Search results for

“Apple Maps Guides”

155,786 results found

Post

Replies

Boosts

Views

Activity

How do I include my data in Apple maps for all Users?
I have an IoT application that provides real-time and predictive train crossing information. We will be widely deployed across North America in the very near future, but already have our flagship site equipped to provide data. We are working with Waze to get the data to their users; this will be operational in February 2017. How do I do the same with Apple Maps?
3
0
272
Dec ’16
Apple Maps vs MapKit Satellite Image Quality
I've noticed a big difference in quality between Apple Maps and MapKit Satellite image quality. Apple Maps images are so much clearer and you can zoom in further. In the area near me it really fuzzy and if you zoom in all the way you end up with no tiles at all. Is it possible I'm missing a setting that would enable better images? Or is apple just saving the best images for their own app?Here is an example of the images side by side:http://i.imgur.com/w4s388p.jpg
7
0
3.2k
Feb ’16
In Apple maps to display the store name along with address and distance with Map URL constructed
https://developer.apple.com/library/archive/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html In the above link the q parameter will search for the location passed and the lat long passed. But it only displays the address and distance on maps. How can we display the store name as well. Which parameter can be used to pass the store name to the Apple maps URL. example: http://maps.apple.com/?q=%E3%82%AA%E3%83%AA%E3%82%B8%E3%83%B3%E5%BC%81%E5%BD%93%2F%E3%82%AD%E3%83%83%E3%83%81%E3%83%B3%E3%82%AA%E3%83%AA%E3%82%B8%E3%83%B3%20%E5%A4%96%E7%A5%9E%E7%94%B03%E4%B8%81%E7%9B%AE3%E5%8F%B7%E5%BA%97,ll=35.700623,139.770294 This will point the Lat long in the map with the address and distance. Expected: To display the store name along with address and distance
0
0
489
Dec ’20
Apple Maps directions not starting on first launch in CarPlay
In my app, I want to launch Apple Maps and start turn-by-turn navigation when the user taps a button. I referred to Apple’s documentation and sample projects and implemented the following code: if let url = URL(string: maps://?t=m&daddr=(addr)) { self.carplayScene?.open(url, options: nil, completionHandler: nil) } This works only if Apple Maps has been launched at least once on the iPhone or in the CarPlay environment. If Apple Maps has never been opened before, it launches the app but does not automatically start navigation. However, once the user has opened Apple Maps at least once — either on the phone or through CarPlay — then navigation starts as expected from that point on. Is this behavior expected? Or is it a bug?
3
0
153
Jun ’25
App store alert to download Apple maps appears twice
I have a code that redirects the user to Google Maps or Apple Maps by pressing the map , when Apple Maps is uninstalled, an alert appears asking the user to download Apple Maps and redirects the user to the App Store, when I select Show in App Store, the user is redirected to App Store, and then the alert is shown again. func openMaps() { let coordinate = CLLocationCoordinate2D(latitude: 52.5162746, longitude: 13.3755153) let mapItem = MKMapItem(placemark: MKPlacemark(coordinate: coordinate)) mapItem.name = Test mapItem.openInMaps(launchOptions: [MKLaunchOptionsDirectionsModeKey: MKLaunchOptionsDirectionsModeDefault]) }
0
0
422
Dec ’23
Apple's ARM64 Assembler User's Guide
Does this exist? Apple seems to have a unique syntax it recognizes (vs GCC arm64 assembler) and getting assembly code cross compiled it for iOS in Xcode has been very frustrating and unfruitful. Is there any guidance on how to do this? The reason for assembly is to support volk, vector optimized library.
1
0
1.1k
Oct ’23
Apple Maps Styling Configuration (Label Density)
Hi all, I'm wondering if it is possible to make any adjustments for the label density of road signage and points of interest on the map. I am creating a custom map with markers and the additional signage and road markings are really distracting from what I want to display. Can't seem to find anything in the documentation that refers to density only being able to customise the specific styling of icons or marker shapes for example. Thanks!
0
0
884
Jan ’23
MKMapView hangs until Apple Maps app is launched
I have been experiencing a strange random failure with MapKit: Sometimes, an MKMapView configured to show the user location will hang, not retrieve any location updates and not report any kind of error (is there is even a way to do that?) UNTIL I launch the Apple Maps app and the return to my app. Location permissions are already granted so that's not an issue. Google Maps has no problem. Has anyone experienced anything similar?
1
0
593
Jan ’16
How to open Enhanced Apple Maps page from iOS app
I'm trying to create a link from a restaurant annotation on a map in my app (created using MapKit) that will open the Apple Maps app on an iphone. I've been using the Restaurant name, telephone number, and coordinates and cannot get applemaps to open the enhanced page (which contains photographs and customer reviews and is much more descriptive than the page that is opening, which only shows the location on a map with the phone number and coordinates. It is not that descriptive, and I'm trying to create a request that will make it very easy to jump back and forth between my app and the enhanced page on apple maps. here's what I'm using in my request: private func openInAppleMaps() { let coordinate = CLLocationCoordinate2D(latitude: restaurant.latitude, longitude: restaurant.longitude) let placemark = MKPlacemark(coordinate: coordinate) let mapItem = MKMapItem(placemark: placemark) mapItem.name = restaurant.name if let phone = restaurant.telephone1 { mapIt
1
0
484
Dec ’24
How do I include my data in Apple maps for all Users?
I have an IoT application that provides real-time and predictive train crossing information. We will be widely deployed across North America in the very near future, but already have our flagship site equipped to provide data. We are working with Waze to get the data to their users; this will be operational in February 2017. How do I do the same with Apple Maps?
Replies
3
Boosts
0
Views
272
Activity
Dec ’16
Apple Maps vs MapKit Satellite Image Quality
I've noticed a big difference in quality between Apple Maps and MapKit Satellite image quality. Apple Maps images are so much clearer and you can zoom in further. In the area near me it really fuzzy and if you zoom in all the way you end up with no tiles at all. Is it possible I'm missing a setting that would enable better images? Or is apple just saving the best images for their own app?Here is an example of the images side by side:http://i.imgur.com/w4s388p.jpg
Replies
7
Boosts
0
Views
3.2k
Activity
Feb ’16
How to delete business old address on apple map?
Our store moved to new location, however the old address still shows up on apple map. Since we don't have the old phone number that is associated with old business, address, we can't claim business either. Is there a way to remove old business address, or other way to claim business owner. It really misleading the customers who are trying to find us.
Replies
1
Boosts
0
Views
843
Activity
Nov ’22
Is it possible to "animate forward" in an MKLookAroundViewController like Apple Maps?
I would like to animate the scene forward in an MKLookaroundViewController in the same way that the Apple Maps app does when you tap the road ahead. Is this possible with MapKit?
Replies
0
Boosts
0
Views
1.1k
Activity
Sep ’22
In Apple maps to display the store name along with address and distance with Map URL constructed
https://developer.apple.com/library/archive/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html In the above link the q parameter will search for the location passed and the lat long passed. But it only displays the address and distance on maps. How can we display the store name as well. Which parameter can be used to pass the store name to the Apple maps URL. example: http://maps.apple.com/?q=%E3%82%AA%E3%83%AA%E3%82%B8%E3%83%B3%E5%BC%81%E5%BD%93%2F%E3%82%AD%E3%83%83%E3%83%81%E3%83%B3%E3%82%AA%E3%83%AA%E3%82%B8%E3%83%B3%20%E5%A4%96%E7%A5%9E%E7%94%B03%E4%B8%81%E7%9B%AE3%E5%8F%B7%E5%BA%97,ll=35.700623,139.770294 This will point the Lat long in the map with the address and distance. Expected: To display the store name along with address and distance
Replies
0
Boosts
0
Views
489
Activity
Dec ’20
Apple Maps directions not starting on first launch in CarPlay
In my app, I want to launch Apple Maps and start turn-by-turn navigation when the user taps a button. I referred to Apple’s documentation and sample projects and implemented the following code: if let url = URL(string: maps://?t=m&daddr=(addr)) { self.carplayScene?.open(url, options: nil, completionHandler: nil) } This works only if Apple Maps has been launched at least once on the iPhone or in the CarPlay environment. If Apple Maps has never been opened before, it launches the app but does not automatically start navigation. However, once the user has opened Apple Maps at least once — either on the phone or through CarPlay — then navigation starts as expected from that point on. Is this behavior expected? Or is it a bug?
Replies
3
Boosts
0
Views
153
Activity
Jun ’25
App store alert to download Apple maps appears twice
I have a code that redirects the user to Google Maps or Apple Maps by pressing the map , when Apple Maps is uninstalled, an alert appears asking the user to download Apple Maps and redirects the user to the App Store, when I select Show in App Store, the user is redirected to App Store, and then the alert is shown again. func openMaps() { let coordinate = CLLocationCoordinate2D(latitude: 52.5162746, longitude: 13.3755153) let mapItem = MKMapItem(placemark: MKPlacemark(coordinate: coordinate)) mapItem.name = Test mapItem.openInMaps(launchOptions: [MKLaunchOptionsDirectionsModeKey: MKLaunchOptionsDirectionsModeDefault]) }
Replies
0
Boosts
0
Views
422
Activity
Dec ’23
Apple Maps Listing
Hello I am wondering if there is an API for Listing and claiming a business. As I would like to add automated multiple business location and updated them from time to time. Thank you in advance
Replies
0
Boosts
0
Views
948
Activity
Dec ’22
Apple's ARM64 Assembler User's Guide
Does this exist? Apple seems to have a unique syntax it recognizes (vs GCC arm64 assembler) and getting assembly code cross compiled it for iOS in Xcode has been very frustrating and unfruitful. Is there any guidance on how to do this? The reason for assembly is to support volk, vector optimized library.
Replies
1
Boosts
0
Views
1.1k
Activity
Oct ’23
Deep link to "Share ETA" with friend in Apple Maps
Can you create a deep link to Share ETA with a specific phone number to a set location based on the user's current location using Apple Maps?
Replies
0
Boosts
0
Views
343
Activity
Jan ’20
Apple Maps Styling Configuration (Label Density)
Hi all, I'm wondering if it is possible to make any adjustments for the label density of road signage and points of interest on the map. I am creating a custom map with markers and the additional signage and road markings are really distracting from what I want to display. Can't seem to find anything in the documentation that refers to density only being able to customise the specific styling of icons or marker shapes for example. Thanks!
Replies
0
Boosts
0
Views
884
Activity
Jan ’23
Need Help with Apple Private Key and Maps ID
Hello! I would like to ask if there is a way to get your Apple Private Key and Maps ID needed for the Mapkit JS if you're not enrolled in a paid developer/developer enterprise program?
Replies
0
Boosts
0
Views
635
Activity
May ’23
MKMapView hangs until Apple Maps app is launched
I have been experiencing a strange random failure with MapKit: Sometimes, an MKMapView configured to show the user location will hang, not retrieve any location updates and not report any kind of error (is there is even a way to do that?) UNTIL I launch the Apple Maps app and the return to my app. Location permissions are already granted so that's not an issue. Google Maps has no problem. Has anyone experienced anything similar?
Replies
1
Boosts
0
Views
593
Activity
Jan ’16
How to open Enhanced Apple Maps page from iOS app
I'm trying to create a link from a restaurant annotation on a map in my app (created using MapKit) that will open the Apple Maps app on an iphone. I've been using the Restaurant name, telephone number, and coordinates and cannot get applemaps to open the enhanced page (which contains photographs and customer reviews and is much more descriptive than the page that is opening, which only shows the location on a map with the phone number and coordinates. It is not that descriptive, and I'm trying to create a request that will make it very easy to jump back and forth between my app and the enhanced page on apple maps. here's what I'm using in my request: private func openInAppleMaps() { let coordinate = CLLocationCoordinate2D(latitude: restaurant.latitude, longitude: restaurant.longitude) let placemark = MKPlacemark(coordinate: coordinate) let mapItem = MKMapItem(placemark: placemark) mapItem.name = restaurant.name if let phone = restaurant.telephone1 { mapIt
Replies
1
Boosts
0
Views
484
Activity
Dec ’24
Reply to com.apple.StorageKit error 118 APFS external drive convert
If this is still an issue for anyone, I found this in another post.When erasing the disk, choose GUID Partition Map for the Scheme. I had the same issue when the Schene was set to Master Boot Record.Good luck.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’17