Search results for

“Apple Maps Guides”

155,796 results found

Post

Replies

Boosts

Views

Activity

Maps on carplay
When entering a destination on maps and pressing start, my arrow follows the map and not the other way around. If the road is going down, then my arrow is also going down on my screen. This happnes only when i connect it to may carplay in my car. Does anyone know, how I can fix this? Tnx.
0
0
870
Apr ’18
openSystemURL for maps
Is this a bug? Why doesn't it open the watchKit installed maps app? let url = http://maps.apple.com/?ll=50.894967,4.341626 let locationURL = NSURL(string:url)! WKExtension.sharedExtension().openSystemURL(locationURL)It seems like this is valid and should open the Watch's maps app.
1
0
732
Nov ’15
Indoor Map showinng World Map
I followed the sample code shared developer.apple.com DisplayingIndoorMapsWithMapKitJS.zipI Integrated Jwtoken correctly and there is no error in browser console however it is showing World Map. Sample Code of index.html file. <!DOCTYPE html> <html><head> <title>IMDF</title> <meta charset=utf-8> <meta name=viewport content=width=device-width, user-scalable=no> <link rel=stylesheet type=text/css href=/style.css> <script type=text/javascript src=https://cdn.apple-mapkit.com/mk/5.x.x/mapkit.js></script> <script type=text/javascript src=/IMDFArchive.js></script> <script type=text/javascript src=/LevelPicker.js></script> <script type=text/javascript src=/IndoorMap.js></script></head><body> <div id=map> </div><script type=text/javascript></script></body></html>See the output
0
0
406
Apr ’20
Apple Pay Extensions Implementation guide Not found
Good morning, the link https://applepaydemo.apple.com/wallet-extensions returns a {detail:Not Found} when accessed. This is one of the links that are present in https://developer.apple.com/documentation/PassKit/implementing-wallet-extensions, could this be looked at please ? The exact place is: For more information on Wallet Extensions, see the Apple Pay Demo - Wallet Extensions documentation.
0
0
69
Feb ’26
Map with direction Arrows
I need to set a direction arrow in between two annotaion points on apple map .I have latitude and longitude values , and placed custom annonations on map based on this value , then drew polylines to connect each annotations. The requirement is to show direction arrow on polyline . please give solutions for it .
0
0
457
Aug ’16
Rotate Map
HiI am working on a walk tracking app adn would like to rotate the map so that when i am walking the map rotates so that my heading is always pointing to the top of the screen. I sort of have it working but the map keeps resetting back to normal rotation.private func startLocationUpdates() { // our delegate locationManager.delegate = self //sets the orintation of the phone locationManager.headingOrientation = .portrait // our type filter locationManager.activityType = .fitness //can be automotive locationManager.distanceFilter = 10 locationManager.startUpdatingLocation() // check to see if we can get a heading update if (CLLocationManager.headingAvailable()) { // 5 degree change before we update locationManager.headingFilter = 5 locationManager.startUpdatingHeading() } }I use the locationmanagers updateheading then set teh camera heading to thatmapView.camera.heading = newHeading.trueHeading mapView.setCamera(mapView.camera, animated: true)
1
0
860
Jul ’18
Seeking UI card component similar to Control Center or Apple Maps
Hi everyone,I'm new to iOS dev, and have started with react-native.I'm actively seeking for a design pattern similar to the new iOS 10 Apple Map where you can see a card (or vertical split view) upon clicking on a pin on a map. With the card, you can further slide up to see more information of the pin you selected, and it will occupy the whole screen.Pictures always help, here's what I'm talking about, borrowed from imore.com.https://www.imore.com/sites/imore.com/files/styles/larger/public/field/image/2016/09/maps-ios-10-yelp.jpg?itok=LT47ccBzI can't find this pattern in Apple's design guideline, nor does it exist in react-native or Apple's native components.The closest thing I found is split view, but it doesn't let you split views vertically neither.On the other hand, I've seen iOS apps that implement this design.Here's my 2 questions:Is this a good(consistent) pattern to be used in iOS?How do people implement this and what component do they use in iOS?N
0
0
498
Nov ’16
Maps stopped displaying
A few weeks ago I started learning how to use MapKit js and all seemed well. I got the ID, Key & token all fine. Pulled up my first map and proceeded to add features which resulted in just the map I wanted. However, the weekend just gone I updated my server from http to https (or should I more accurately say my Internet Provider did the upgrade!). Anyway my map no longer displays the mapping data, my stuff is there but no Apple Maps. So I thought that as I specified a domain name originally, I would create a new ID, key and token, just incase. But that does not seem to work either. Any ideas?
2
0
528
Nov ’20
Suggestion for Maps on iPhone
I am the type of person who loves to search for food, drinks, shopping, travel, etc. on maps in order to find what I am looking for based on my location. However, I had an idea the other day that I think is worth sharing. A lot of times I will be looking up food places around 1:00 am or 2:00 am, and Maps will provide me with an abundance of fast food stores and restaurants near me. Although this is somewhat helpful, Maps usually provides me with places that are not currently open at the time I am searching for them. I believe that Maps would be extremely helpful if it could look up food places, stores, and other services that are currently open at the time people search for them, so that you don't have to go look up on the internet to see if a certain store is open. I feel like this idea would be very beneficial and efficient to Apple users who are on the go all around the world. I wanted to start this discussion to see if any other Apple users feel the sa
1
0
465
Nov ’17
where do I find apple app icons (like maps) that are legal to use
I believe I have seen a download source on the developer site where Apple made application icons (like Maps) are available for inclusion in my apps but I cannot find this source.Similarly, if the resource does exist, is there an accepted method to provide credit for such icons?
Replies
1
Boosts
0
Views
578
Activity
Apr ’17
Indoor Maps
Two part question on indoor map1. Can we use the Indoor Airport Maps that avaiable within iOS but on our website, (i.e. non iOS)?2. Can we use the Indoor Airport Maps that avaiable within iOS but on an android application?
Replies
1
Boosts
0
Views
891
Activity
Jun ’19
Maps on carplay
When entering a destination on maps and pressing start, my arrow follows the map and not the other way around. If the road is going down, then my arrow is also going down on my screen. This happnes only when i connect it to may carplay in my car. Does anyone know, how I can fix this? Tnx.
Replies
0
Boosts
0
Views
870
Activity
Apr ’18
openSystemURL for maps
Is this a bug? Why doesn't it open the watchKit installed maps app? let url = http://maps.apple.com/?ll=50.894967,4.341626 let locationURL = NSURL(string:url)! WKExtension.sharedExtension().openSystemURL(locationURL)It seems like this is valid and should open the Watch's maps app.
Replies
1
Boosts
0
Views
732
Activity
Nov ’15
Indoor Map showinng World Map
I followed the sample code shared developer.apple.com DisplayingIndoorMapsWithMapKitJS.zipI Integrated Jwtoken correctly and there is no error in browser console however it is showing World Map. Sample Code of index.html file. <!DOCTYPE html> <html><head> <title>IMDF</title> <meta charset=utf-8> <meta name=viewport content=width=device-width, user-scalable=no> <link rel=stylesheet type=text/css href=/style.css> <script type=text/javascript src=https://cdn.apple-mapkit.com/mk/5.x.x/mapkit.js></script> <script type=text/javascript src=/IMDFArchive.js></script> <script type=text/javascript src=/LevelPicker.js></script> <script type=text/javascript src=/IndoorMap.js></script></head><body> <div id=map> </div><script type=text/javascript></script></body></html>See the output
Replies
0
Boosts
0
Views
406
Activity
Apr ’20
Apple Pay Extensions Implementation guide Not found
Good morning, the link https://applepaydemo.apple.com/wallet-extensions returns a {detail:Not Found} when accessed. This is one of the links that are present in https://developer.apple.com/documentation/PassKit/implementing-wallet-extensions, could this be looked at please ? The exact place is: For more information on Wallet Extensions, see the Apple Pay Demo - Wallet Extensions documentation.
Replies
0
Boosts
0
Views
69
Activity
Feb ’26
Map with direction Arrows
I need to set a direction arrow in between two annotaion points on apple map .I have latitude and longitude values , and placed custom annonations on map based on this value , then drew polylines to connect each annotations. The requirement is to show direction arrow on polyline . please give solutions for it .
Replies
0
Boosts
0
Views
457
Activity
Aug ’16
Rotate Map
HiI am working on a walk tracking app adn would like to rotate the map so that when i am walking the map rotates so that my heading is always pointing to the top of the screen. I sort of have it working but the map keeps resetting back to normal rotation.private func startLocationUpdates() { // our delegate locationManager.delegate = self //sets the orintation of the phone locationManager.headingOrientation = .portrait // our type filter locationManager.activityType = .fitness //can be automotive locationManager.distanceFilter = 10 locationManager.startUpdatingLocation() // check to see if we can get a heading update if (CLLocationManager.headingAvailable()) { // 5 degree change before we update locationManager.headingFilter = 5 locationManager.startUpdatingHeading() } }I use the locationmanagers updateheading then set teh camera heading to thatmapView.camera.heading = newHeading.trueHeading mapView.setCamera(mapView.camera, animated: true)
Replies
1
Boosts
0
Views
860
Activity
Jul ’18
Seeking UI card component similar to Control Center or Apple Maps
Hi everyone,I'm new to iOS dev, and have started with react-native.I'm actively seeking for a design pattern similar to the new iOS 10 Apple Map where you can see a card (or vertical split view) upon clicking on a pin on a map. With the card, you can further slide up to see more information of the pin you selected, and it will occupy the whole screen.Pictures always help, here's what I'm talking about, borrowed from imore.com.https://www.imore.com/sites/imore.com/files/styles/larger/public/field/image/2016/09/maps-ios-10-yelp.jpg?itok=LT47ccBzI can't find this pattern in Apple's design guideline, nor does it exist in react-native or Apple's native components.The closest thing I found is split view, but it doesn't let you split views vertically neither.On the other hand, I've seen iOS apps that implement this design.Here's my 2 questions:Is this a good(consistent) pattern to be used in iOS?How do people implement this and what component do they use in iOS?N
Replies
0
Boosts
0
Views
498
Activity
Nov ’16
Maps stopped displaying
A few weeks ago I started learning how to use MapKit js and all seemed well. I got the ID, Key & token all fine. Pulled up my first map and proceeded to add features which resulted in just the map I wanted. However, the weekend just gone I updated my server from http to https (or should I more accurately say my Internet Provider did the upgrade!). Anyway my map no longer displays the mapping data, my stuff is there but no Apple Maps. So I thought that as I specified a domain name originally, I would create a new ID, key and token, just incase. But that does not seem to work either. Any ideas?
Replies
2
Boosts
0
Views
528
Activity
Nov ’20
MAP Protocol Connection
I would like to know whether MFI authentication is required to connect to Apple MAP protocol. Thank you very much!
Replies
0
Boosts
0
Views
563
Activity
Feb ’22
missing SpriteKit programming guide
Does anybody know what's wrong with 'SpriteKit programming guide'? I cannot google it and my bookmarks to this guide stoped working few days ago 😟 Volvo pls fix 😉
Replies
3
Boosts
0
Views
749
Activity
Apr ’17
Suggestion for Maps on iPhone
I am the type of person who loves to search for food, drinks, shopping, travel, etc. on maps in order to find what I am looking for based on my location. However, I had an idea the other day that I think is worth sharing. A lot of times I will be looking up food places around 1:00 am or 2:00 am, and Maps will provide me with an abundance of fast food stores and restaurants near me. Although this is somewhat helpful, Maps usually provides me with places that are not currently open at the time I am searching for them. I believe that Maps would be extremely helpful if it could look up food places, stores, and other services that are currently open at the time people search for them, so that you don't have to go look up on the internet to see if a certain store is open. I feel like this idea would be very beneficial and efficient to Apple users who are on the go all around the world. I wanted to start this discussion to see if any other Apple users feel the sa
Replies
1
Boosts
0
Views
465
Activity
Nov ’17
Maps SDK
Is there any cost associated with using the maps SDK? If so, what costs are associated, and when do the begin to occur?Thanks
Replies
2
Boosts
0
Views
351
Activity
Oct ’15
how to display app UI when Locking screen, just like Apple`s Map app
how to display app UI when Locking screen, just like Apple`s Map apphow to display app UI when Locking screen, just like Apple`s Map app
Replies
0
Boosts
0
Views
200
Activity
Jun ’16