I am working in a multi platform app that relies on configuration scripts. For most platforms I can export the linker Map using the flag -Wl, -Map, file.map or -Wl, -Map=file.com When building through XCode 8, I get an error that -Map is an invalid option. XCode itself supports exporting linker maps in the project settings, so I know the capability is there, but I can't find any documentation anywhere on what the correct option to use is. What invisible flag is XCode setting when you enable exporting a map and assigning a path? What is the correct option to use to enable that from outside of the IDE through scripts or config files? Thanks in advance.
Search results for
Apple Maps Guides
154,029 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I used to download programming guides to get each guide as a single pdf document.I tried today to get new guides, such as File System Programming Guide ; I went to the Mac developer Library (/developer.apple.com/ library/mac/navigation/), found the guide in the list and opened it. I can browse through the document, but cannot find anymore the download as pdf button.Am I looking in the wrong place ? Or has the capabilioty been cancelled ?
Hello people,I'm trying to find out which port is used by MapKit / iOS maps. My application runs behind a VPN connection which grants access to a private network but it blocks evreything else. I still need map-functionality however which is also being blocked. What port does Maps use to download things like map tiles and step by step navigation programs.I have checked https://support.apple.com/en-us/HT202944 but Maps is not listed on there. It does make sense if it uses 80 or 443 but I would like to be sure before fiddling with firewall settings (not my expertise, I easily break stuff xD).Thanks!
Hi, my Name is Markus and I am working on my first app... What I like to do The user should be able to place an image freely on the map. The Image must scale in real world dimension. The user also should be able to rotate the image via a slider. What I did so far I guess there are smarter ways to do so but it works so fare. The only missing feature is the rotation functionality. I tried to rotate the UIImage but this results in a cropped image since the MKMapRect (which I need to scale) does not rotate class MapViewController: UIViewController { tt@IBOutlet weak var mapView: MKMapView! ttoverride func viewDidLoad() { ttttsuper.viewDidLoad()tttt ttttmapView.delegate = self // prepare the services/map ... // user can change the orientation via a slider ( 0-2*.pi -> 0-360° ) ttttdraw(orientation: 0) tt} ttfunc draw(orientation: Double) { ttttlet region = mapView.region ttttlet center = region.center ttttlet pointsPerMeter = MKMapPointsPerMeterAtLatitude(center.latitude) tttt// Real-World-Obj
I'm following: https://developer.apple.com/documentation/applemapsserverapi/creating-a-maps-identifier-and-a-private-key#Create-a-Maps-ID to create map id and private key. On step #4 I can't find Maps IDs checkbox on the web page, blow is the screen capture which contains all options I have on my page:
I need to be able to offer voice turn by turn directions in my app similar to the one in Apple Maps.Yet nowhere do I find any guidance or recommendation, or any idea of how I should go about it.It would seem that MapKit doesn't do it...or did I miss something in the documentation? I get written turn by turn, but not the fancy approach used in Apple Maps. Do I need to use a specific library?Any information will be greatly appreciated!
Is there some secret source for getting map tiles showing up in the watchOS simulator? I tried launching Maps on the iOS simulator first, but that didn't change anything.
Here's a little test function:import UIKit func foo() { let views1 = (1...2).map { _ in let v = UIView() return v } let views2 = (1...2).map { _ in return UIView() } } I would expect the two map calls to behave identically. In fact, view2 compiles fine; but I get this error on view1:error: cannot invoke 'map' with an argument list of type '(@noescape (Int) throws -> _)' let views1 = (1...2).map { _ in ^ note: expected an argument list of type '(@noescape (Self.Generator.Element) throws -> T)' let views1 = (1...2).map { _ in ^ Can anyone tell me what is going on?Thanks.
The iOS Maps app from Apple runs in full screen on a locked iPhone.Which iOS API should be used to achieve similar results? (i.e. the user experience on a locked iOS device for Apple Maps is incredible.)The Apple Maps app runs full screen when iPhone is locked: e.g. this screenshot was taken on a locked iPhone:https://i.stack.imgur.com/bc6Hw.jpgiOS has Widgets (e.g. https://developer.apple.com/design/human-interface-guidelines/ios/extensions/widgets/ but somehow the Apple Maps app appears to run not constrained by the widget container, in full screen on a locked iPhone.I have not seen any other apps with the same behaviour (e.g. Google Maps is using a typical widget on a locked screen which looks very different: not full screen but constrained by the frame of the widget)Thank you.
Hello! Tell me how to properly launch the map and display the user's location? After reading the documentation, I didn't quite understand how to correctly implement the code. Thank!
Hi folks,I cannot use aps in simulator. Not in my own app and not in Maps App. If I try to search a destination in Maps App I get an Map server not available error message. Any suggestions ?Best regardsAxel
When we are tracking a user using GPS coordinates and displaying it on the app, similar to how uber does for the cabs, we are unable to determine the zoom level for the map. Due to which the map autoresizes for every refresh when ever the map is zoomed in.
Hi,I am making an app which shows places of interest within a given radius from the user's current location. I wish to plot a route between these two locations on a MKMapView. I tried using the MKDirections class but I always get an error Cannot determine route (or something similar). On researching a bit I found out that this was because Apple does not provide directions support in my country, India. As a workaround, I am using the following code to open Google Maps in the browser.let url = NSURL(string: http://maps.google.com/maps?saddr=(sourceLocation.latitude),(sourceLocation.longitude)&daddr=(destinationLocation.latitude),(destinationLocation.longitude))UIApplication.sharedApplication().openURL(url)So my question is, is this allowed? Can my app get rejected for using google maps?
Hi, I have a problem when I want to attach my grayscale depth map image into the real image. The produced depth map doesn't have the cameraCalibration value which should responsible to align the depth data to the image. How do I align the depth map? I saw an article about it but it is not really detailed so I might be missing some process. I tried to: convert my depth map into pixel buffer create image destination ref and add the image there. add the auxData (depth map dict) This is the output: There is some black space there and my RGB image colour changes
Hi, I am looking for a way to take advantage of a user's camera in order to create a 3d map. Are there any API's, Frameworks, or kits that could help me with this? Similar to 'Project Tango' in google.