Search results for

Apple Maps Guides

149,473 results found

Post

Replies

Boosts

Views

Activity

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
441
Dec ’20
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
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
391
Dec ’23
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
78
Jun ’25
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
861
Jan ’23
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
420
Dec ’24
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
573
Jan ’16