Search results for

“Apple Maps Guides”

155,811 results found

Post

Replies

Boosts

Views

Activity

How to know map provider is TomTom or AutoNavi?
Hi ALL,The MKMapView used AutoNavi map in China, others country used TomTom.My question is how to detect the MKMapView provider? It looks like Apple detect IP address and then auto switch the map to AutoNavi or TomTom, but Apple didn't provide any API to know the status.The AutoNavi used GCJ-02 and TomTom used WGS-84.I know both of the two formats can convert to each other, but the problem is I don't know the map now is AutoNavi or TomTom.Thanks.
1
0
1k
Nov ’17
Is there an IPA notation guide for AVSpeechSynthesizer?
I am utilizing macOS and would like to know how to create accurate or alternate pronunciations using AVSpeechSynthesizer. Is there a guide or document that indicates the unicode symbols that are used or accepted for the IPA notation? The only method that I've found is to create or obtain pronunciations is through an iPhone. References: AVSpeechSynthesisIPANotationAttribute https://developer.apple.com/videos/play/wwdc2018/236/?time=424 https://a11y-guidelines.orange.com/en/mobile/ios/wwdc/2018/236/ https://developer.apple.com/documentation/avfaudio/avspeechsynthesisipanotationattribute
0
0
880
Jul ’21
Google maps in Action Extension
Hello fellas.Im having trouble using Google maps in an action extension on IOS. Im currently writing it in swift 2.2 and i have it working in the Containing app without problems.All possible issues with the API key is checked and this shouldnt be the problem.I load the map just as i do in the containing app, but instead of showing a dot on a map at my location, it shows me this:https://i.stack.imgur.com/6G5ao.pngSo my question is - Is it at all possilbe to use google maps in an Action extension? If so, does anyone have experience whith this issue?I have a question on SO regarding this, you can find it here - http://stackoverflow.com/questions/40997418/where-do-i-set-google-maps-api-key-in-an-action-extension-ios-swiftThanks in advance
0
0
367
Dec ’16
Working with Apple Maps, suddenly: [core] "Error returned from daemon: Error Domain=com.apple.accounts Code=7 "(null)""
I've been working on my app using Apple Maps. All of a sudden the map is not shown anymore, everything remains black. The only thing visible is the Apple Maps logo and the legal tag. Now I get the error ** [core] Error returned from daemon: Error Domain=com.apple.accounts Code=7 (null)** and the app stops so that I can't click anything anymore! Please help! I know now for sure that it is the apple map causing the error! As soon as I comment the line Map(...) I can use the app normally and do not receive the error mentioned above.
0
0
906
Mar ’23
MKMapView doesn't show updated map data
I have used MKMapView which is showing old map data. A certain area has new houses but they are not showing up in the Map. Even the default apple maps app is not showing those houses either. However I have seen an another app which shows MKMapView as well, but the map data is updated over there, and the new houses are showing up. I have also checked google maps app and it has the updated map data as well. I couldn't find anything related to updating MKMapView's data. Is there a way, I can update the map data in my app, which is getting used by MKMapView. View in my App's MKMapView Same Location in another app which seems to be using MKMapView as well. (I could see the apple maps logo at the bottom left corner) Same Location in google maps app on iPhone. Even the apple maps app in iPhone doesn't show the updated data, but some how its showing in another app. Please help me understand, what could
1
0
755
Oct ’22
where is map extensions documentation
They announced map extensions and when you look at the big new features it is listed, however I can't find the documentation for it anywhere. When you click to learn more about map extensions it takes you to a page that has other iOS 10 features, but no where in that document does it talk about map extensions. Where are the API docs?
10
0
2.3k
Jun ’16
Maps URL Scheme
I have reviewed this document: https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html.It says:To perform a search, supply a properly encoded URL string as the value of the q parameter. For example:http://maps.apple.com/?q=Mexican+RestaurantHowever, I'm wondering if there are certain keywords that I can enter for the q parameter. What I'm trying to do is display the user's home address. I was hoping that if I ended the URL with ?q=Home it would accomplish what I want, but it just pulls up a Home Depot from another state.Does anyone know of a way to accomplish this? I'm working on the premise that the user has selected their contact card under My Info in the Contacts app, that they have programmed their home address into the contact, and that Maps is able to read that (if I manually type in Home into the search field in Maps, it does suggest my home address as a result).
0
0
3.8k
Sep ’17
Reply to Authentication with next auth library
Did you ever get a fix here? I have also been stuck on this for many weeks. Have followed this guide: https://www.kyle-melton.com/blog/2022-02-how-to-setup-sign-in-with-apple and this older guide: https://www.thesiddd.com/blog/apple-auth to no avail. Would love to collaborate here and come up with a fix. Hopefully then can write a definitive, fool-proof guide on how to fix.
Topic: App & System Services SubTopic: General Tags:
Nov ’22
Incorrect position rendering of WGS84 coordinate in MKMapView: Discrepancy between Apple Maps (Hong Kong) and Amap (Mainland China)
I am encountering a coordinate rendering issue using MKMapView in my iOS app. I have a GPS coordinate in WGS84 format, which corresponds to a location in Hong Kong. When my device is physically located in Hong Kong, MKMapView displays the map with the Apple Maps label, and the WGS84 coordinate is rendered at the correct position. However, when the device is in Mainland China, MKMapView switches to display Amap (Gaode Maps) branding, and the same WGS84 coordinate is rendered at an incorrect position. I understand that Amap in Mainland China uses the GCJ-02 coordinate system, while Apple Maps typically uses WGS84. This discrepancy suggests a potential coordinate system mismatch, but I cannot definitively confirm which map type (and corresponding coordinate system) MKMapView is actually using in different regions. My key questions are: How can I programmatically or visually confirm the underlying map type (Apple Maps vs. Am
4
0
403
Aug ’25
Map not responding after adding UISheetPresentationController
Hi everyone, I'm basically trying to copy Apple Maps for learning purposes. I've added the map but with Mapbox. I've also created UISheetPresentationController on top of this map but the map is not responding my touches. What variables do I need to override or activate to be able to interact with map and buttons on it?
Replies
0
Boosts
0
Views
670
Activity
May ’23
Display the real 3D map through model3d
In the apple map of some areas, there will be a very realistic real-life 3D map. And now I want to call it through 3d in visionOS (like model3d). How can I call it? Note: What I ask for is not to have an effect similar to 3d on a flat screen like in iOS, but to display the USDZ model in visionOS.
Replies
1
Boosts
0
Views
849
Activity
Jul ’24
How to know map provider is TomTom or AutoNavi?
Hi ALL,The MKMapView used AutoNavi map in China, others country used TomTom.My question is how to detect the MKMapView provider? It looks like Apple detect IP address and then auto switch the map to AutoNavi or TomTom, but Apple didn't provide any API to know the status.The AutoNavi used GCJ-02 and TomTom used WGS-84.I know both of the two formats can convert to each other, but the problem is I don't know the map now is AutoNavi or TomTom.Thanks.
Replies
1
Boosts
0
Views
1k
Activity
Nov ’17
Is there an IPA notation guide for AVSpeechSynthesizer?
I am utilizing macOS and would like to know how to create accurate or alternate pronunciations using AVSpeechSynthesizer. Is there a guide or document that indicates the unicode symbols that are used or accepted for the IPA notation? The only method that I've found is to create or obtain pronunciations is through an iPhone. References: AVSpeechSynthesisIPANotationAttribute https://developer.apple.com/videos/play/wwdc2018/236/?time=424 https://a11y-guidelines.orange.com/en/mobile/ios/wwdc/2018/236/ https://developer.apple.com/documentation/avfaudio/avspeechsynthesisipanotationattribute
Replies
0
Boosts
0
Views
880
Activity
Jul ’21
Google maps in Action Extension
Hello fellas.Im having trouble using Google maps in an action extension on IOS. Im currently writing it in swift 2.2 and i have it working in the Containing app without problems.All possible issues with the API key is checked and this shouldnt be the problem.I load the map just as i do in the containing app, but instead of showing a dot on a map at my location, it shows me this:https://i.stack.imgur.com/6G5ao.pngSo my question is - Is it at all possilbe to use google maps in an Action extension? If so, does anyone have experience whith this issue?I have a question on SO regarding this, you can find it here - http://stackoverflow.com/questions/40997418/where-do-i-set-google-maps-api-key-in-an-action-extension-ios-swiftThanks in advance
Replies
0
Boosts
0
Views
367
Activity
Dec ’16
MapKit attribution for my own original maps?
This post states that attribution is required for MapKit or violates the developer agreement. Can I provide my own attribution if I am displaying my original map content? It seems bizarre to attribute map sources that are not used.
Replies
0
Boosts
0
Views
705
Activity
Jan ’24
Working with Apple Maps, suddenly: [core] "Error returned from daemon: Error Domain=com.apple.accounts Code=7 "(null)""
I've been working on my app using Apple Maps. All of a sudden the map is not shown anymore, everything remains black. The only thing visible is the Apple Maps logo and the legal tag. Now I get the error ** [core] Error returned from daemon: Error Domain=com.apple.accounts Code=7 (null)** and the app stops so that I can't click anything anymore! Please help! I know now for sure that it is the apple map causing the error! As soon as I comment the line Map(...) I can use the app normally and do not receive the error mentioned above.
Replies
0
Boosts
0
Views
906
Activity
Mar ’23
MKMapView doesn't show updated map data
I have used MKMapView which is showing old map data. A certain area has new houses but they are not showing up in the Map. Even the default apple maps app is not showing those houses either. However I have seen an another app which shows MKMapView as well, but the map data is updated over there, and the new houses are showing up. I have also checked google maps app and it has the updated map data as well. I couldn't find anything related to updating MKMapView's data. Is there a way, I can update the map data in my app, which is getting used by MKMapView. View in my App's MKMapView Same Location in another app which seems to be using MKMapView as well. (I could see the apple maps logo at the bottom left corner) Same Location in google maps app on iPhone. Even the apple maps app in iPhone doesn't show the updated data, but some how its showing in another app. Please help me understand, what could
Replies
1
Boosts
0
Views
755
Activity
Oct ’22
where is map extensions documentation
They announced map extensions and when you look at the big new features it is listed, however I can't find the documentation for it anywhere. When you click to learn more about map extensions it takes you to a page that has other iOS 10 features, but no where in that document does it talk about map extensions. Where are the API docs?
Replies
10
Boosts
0
Views
2.3k
Activity
Jun ’16
Maps URL Scheme
I have reviewed this document: https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html.It says:To perform a search, supply a properly encoded URL string as the value of the q parameter. For example:http://maps.apple.com/?q=Mexican+RestaurantHowever, I'm wondering if there are certain keywords that I can enter for the q parameter. What I'm trying to do is display the user's home address. I was hoping that if I ended the URL with ?q=Home it would accomplish what I want, but it just pulls up a Home Depot from another state.Does anyone know of a way to accomplish this? I'm working on the premise that the user has selected their contact card under My Info in the Contacts app, that they have programmed their home address into the contact, and that Maps is able to read that (if I manually type in Home into the search field in Maps, it does suggest my home address as a result).
Replies
0
Boosts
0
Views
3.8k
Activity
Sep ’17
Testing With Xcode Guide - Major Typo?
My Objective-C is getting rusty, but in the Testing with Xcode Guide, how can the shared application's delegate be typecast to be a ViewController? Based on the Xcode templates, wouldn't you expect the delegate be an AppDelegate instance?
Replies
1
Boosts
0
Views
582
Activity
Dec ’17
Reply to Authentication with next auth library
Did you ever get a fix here? I have also been stuck on this for many weeks. Have followed this guide: https://www.kyle-melton.com/blog/2022-02-how-to-setup-sign-in-with-apple and this older guide: https://www.thesiddd.com/blog/apple-auth to no avail. Would love to collaborate here and come up with a fix. Hopefully then can write a definitive, fool-proof guide on how to fix.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’22
choropleth map is possible in ios
Hello Everyone choropleth map is possible in swift ios app.where we can fill multiple colour and title and handle click event of map for swift app.
Replies
1
Boosts
0
Views
673
Activity
Mar ’21
Incorrect position rendering of WGS84 coordinate in MKMapView: Discrepancy between Apple Maps (Hong Kong) and Amap (Mainland China)
I am encountering a coordinate rendering issue using MKMapView in my iOS app. I have a GPS coordinate in WGS84 format, which corresponds to a location in Hong Kong. When my device is physically located in Hong Kong, MKMapView displays the map with the Apple Maps label, and the WGS84 coordinate is rendered at the correct position. However, when the device is in Mainland China, MKMapView switches to display Amap (Gaode Maps) branding, and the same WGS84 coordinate is rendered at an incorrect position. I understand that Amap in Mainland China uses the GCJ-02 coordinate system, while Apple Maps typically uses WGS84. This discrepancy suggests a potential coordinate system mismatch, but I cannot definitively confirm which map type (and corresponding coordinate system) MKMapView is actually using in different regions. My key questions are: How can I programmatically or visually confirm the underlying map type (Apple Maps vs. Am
Replies
4
Boosts
0
Views
403
Activity
Aug ’25
MDM reference guide not updated
Hi, where is the information for current MDM profiles as the reference guide now states it is not updated and to refer to the developer SDK site, I cannot find the MDM reference in the developer
Replies
4
Boosts
0
Views
650
Activity
Jun ’18