Search results for

“Apple Maps Guides”

159,837 results found

Post

Replies

Boosts

Views

Activity

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
770
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
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
922
Mar ’23
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
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.9k
Sep ’17
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
515
Aug ’25
Reply to [MapKit JS] Geocoding restriction?
Found this in the license agreement...“Apple Maps Service” means the mapping platform and Map Data provided by Apple via the MapKit API for iOS version 6 or later and for use by You only in connection with Your Applications, or the mapping platform and Map Data provided by Apple via MapKit JS for use by You only in connection with Your Applications, websites, or web applications.As far as I can tell, as long as I am using the MapKit JS service I am allowed to save and use any data generated by the service that is needed for my application to work.
Feb ’19
Reply to Apple Maps Navigation
@hishamkoya Thanks for the post, are you using the Apple Maps API https://developer.apple.com/documentation/applemapsserverapi/ Or you trying to use Apple Maps to navigate? If your answer is the later. These forums are for questions about developing software and accessories for Apple platforms. If your question is related Apple Maps is better suited for the Apple Support Communities https://discussions.apple.com/welcome Thanks Albert  WWDR
7h
How do I map() an array of dictionaries
I'm querying core data to get back my entries like this:let request = NSFetchRequest(entityName: TeamPerson) request.resultType = .DictionaryResultType request.returnsDistinctResults = true request.predicate = NSPredicate(format: team == %@, team) request.propertiesToFetch = [person.first, person.last, person.sql_ident] if let results = team.managedObjectContext?.executeFetchRequest(request, error: nil) as? [[String : AnyObject]] {So now I have an array of dictionary objects as the results variable. Now I want to pass that through map so that I get back a tuple with a formatted name and an integer. I tried this: results.map { (dict: [String : AnyObject]) in let formatted = Person.formattedNameWithFirst(dict[person.first], last: dict[person.last]) (formatted, dict[person.sql_ident]) }But the compiler complains that Cannot invoke 'map' with an argument list of type '(([String : AnyObject]) -> _)'
1
0
239
Jul ’15
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
658
Activity
Jun ’18
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
770
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
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
922
Activity
Mar ’23
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
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.9k
Activity
Sep ’17
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
686
Activity
Mar ’21
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
721
Activity
Jan ’24
Carplay App Integration to Maps App
Hi, can anybody point me to the developer documentation for CarPlay ?i'm looking to integrate some messaging functionality with navigation and am trying to figure out whether I should be doing the mapping piece myself or passing data to the Apple CarPlay Maps app for display (or both).Any help or pointers would be appreciated.Thanks
Replies
0
Boosts
0
Views
424
Activity
Jun ’17
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
515
Activity
Aug ’25
Missing "Event Handling Guide for iOS"
Several documents refer to the Event Handling Guide for iOS, but provide no link and no such document seems to exist.Has it been replaced? Could the documents that reference it be updated to indicate where equivalent documentation could be found?
Replies
4
Boosts
0
Views
2.4k
Activity
Sep ’17
Guide on how to use IOS 12 App Icon Templates
Where can I find a guide on how to use apple IOS 12 icon template in photoshop. Thanks!
Replies
1
Boosts
0
Views
782
Activity
Oct ’18
Reply to [MapKit JS] Geocoding restriction?
Found this in the license agreement...“Apple Maps Service” means the mapping platform and Map Data provided by Apple via the MapKit API for iOS version 6 or later and for use by You only in connection with Your Applications, or the mapping platform and Map Data provided by Apple via MapKit JS for use by You only in connection with Your Applications, websites, or web applications.As far as I can tell, as long as I am using the MapKit JS service I am allowed to save and use any data generated by the service that is needed for my application to work.
Replies
Boosts
Views
Activity
Feb ’19
Reply to Apple Maps Navigation
@hishamkoya Thanks for the post, are you using the Apple Maps API https://developer.apple.com/documentation/applemapsserverapi/ Or you trying to use Apple Maps to navigate? If your answer is the later. These forums are for questions about developing software and accessories for Apple platforms. If your question is related Apple Maps is better suited for the Apple Support Communities https://discussions.apple.com/welcome Thanks Albert  WWDR
Replies
Boosts
Views
Activity
7h
How do I map() an array of dictionaries
I'm querying core data to get back my entries like this:let request = NSFetchRequest(entityName: TeamPerson) request.resultType = .DictionaryResultType request.returnsDistinctResults = true request.predicate = NSPredicate(format: team == %@, team) request.propertiesToFetch = [person.first, person.last, person.sql_ident] if let results = team.managedObjectContext?.executeFetchRequest(request, error: nil) as? [[String : AnyObject]] {So now I have an array of dictionary objects as the results variable. Now I want to pass that through map so that I get back a tuple with a formatted name and an integer. I tried this: results.map { (dict: [String : AnyObject]) in let formatted = Person.formattedNameWithFirst(dict[person.first], last: dict[person.last]) (formatted, dict[person.sql_ident]) }But the compiler complains that Cannot invoke 'map' with an argument list of type '(([String : AnyObject]) -> _)'
Replies
1
Boosts
0
Views
239
Activity
Jul ’15