Search results for

“Apple Maps Guides”

155,808 results found

Post

Replies

Boosts

Views

Activity

How to get a programming guide in a single pdf document ?
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 ?
2
0
1.3k
Feb ’16
iOS Maps internet port?
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!
0
0
492
Aug ’15
Rotate a Image on Maps
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
0
0
856
Sep ’20
Xcode error: Missing target with GUID
I have been getting the following error intermittently (once it happens, then its consistent) when I try to build my app Showing Recent Errors Only Unable to resolve build file: BuildFile (The workspace has a reference to a missing target with GUID '0c7e19da3805e0a412c717704d4549fc25560b498add930cbef9623bd9afb53a') There have been no changes to my project (git status is clean). I have tried cleaning DerivedData as well, but it did not help. How am I supposed to figure out from the GUID what is it that xcode is trying to find?
0
0
68
Mar ’26
can one implement voice directions using MapKit? How can I use the same directions as Apple Maps?
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!
0
0
1.2k
May ’17
Which API can I use to run my app on a locked iOS device in full screen like Apple Maps?
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.
0
0
552
Aug ’19
Linker Map Compiler Option?
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.
0
0
895
May ’17
Attaching depth map manually
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
1
0
459
Feb ’25
Can I open a link to google maps ?
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?
0
0
373
Jun ’16
How to get a programming guide in a single pdf document ?
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 ?
Replies
2
Boosts
0
Views
1.3k
Activity
Feb ’16
Not able to create map id
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:
Replies
3
Boosts
0
Views
598
Activity
Jan ’25
iOS Maps internet port?
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!
Replies
0
Boosts
0
Views
492
Activity
Aug ’15
Rotate a Image on Maps
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
Replies
0
Boosts
0
Views
856
Activity
Sep ’20
Xcode error: Missing target with GUID
I have been getting the following error intermittently (once it happens, then its consistent) when I try to build my app Showing Recent Errors Only Unable to resolve build file: BuildFile (The workspace has a reference to a missing target with GUID '0c7e19da3805e0a412c717704d4549fc25560b498add930cbef9623bd9afb53a') There have been no changes to my project (git status is clean). I have tried cleaning DerivedData as well, but it did not help. How am I supposed to figure out from the GUID what is it that xcode is trying to find?
Replies
0
Boosts
0
Views
68
Activity
Mar ’26
Empty Maps in watchOS simulator
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.
Replies
1
Boosts
0
Views
1.8k
Activity
Apr ’17
can one implement voice directions using MapKit? How can I use the same directions as Apple Maps?
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!
Replies
0
Boosts
0
Views
1.2k
Activity
May ’17
Which API can I use to run my app on a locked iOS device in full screen like Apple Maps?
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.
Replies
0
Boosts
0
Views
552
Activity
Aug ’19
How to show the floor map with route?
How to show the floor map with route in iOS? I'm planning to show the floor map like this,http://i.stack.imgur.com/haMJs.gifIf the user select origin and destination on the floor map, need to show the route between origin and destination. How to achieve and create this floor map with route?Thanks in advance for your valuable idea's.
Replies
0
Boosts
0
Views
264
Activity
Oct ’15
Linker Map Compiler Option?
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.
Replies
0
Boosts
0
Views
895
Activity
May ’17
Attaching depth map manually
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
Replies
1
Boosts
0
Views
459
Activity
Feb ’25
Running a map on SwiftUI
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!
Replies
1
Boosts
0
Views
2.8k
Activity
Jun ’20
How to detect the map zoom level ?
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.
Replies
0
Boosts
0
Views
474
Activity
Jan ’16
Can I open a link to google maps ?
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?
Replies
0
Boosts
0
Views
373
Activity
Jun ’16
Enterprise App Store complete guide
Hi all,Where can I find a complete with requirements guide to set up a private App Store for the Enterprise program?Thank you
Replies
3
Boosts
0
Views
706
Activity
Jan ’16