Search results for

“Apple Maps Guides”

163,155 results found

Post

Replies

Boosts

Views

Activity

Reply to Place Card API - SwiftUI
.mapFeatureSelectionAccessory(.automatic) shows a Place Card with a fixed directions action that always routes through Apple Maps. There's no modifier today that lets you intercept that tap or substitute your own routing engine. However you can register your app as a routing app so Apple Maps and other apps can hand off directions requests to your app. See Configuring Maps support.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
1w
Core Data Mapping Models
Is there an easier way in Xcode to create mapping models. Currently I'm on model 15 and having to create individual models from 1 to 15 is time consuming. I've tried copying an older model and changing the destination but am unable to see any of the new fields added
0
0
441
Aug ’20
Changes to CarPlay maps Application scene
I am looking at the demo code for CarPlay Maps app - https://developer.apple.com/documentation/carplay/integrating-carplay-with-your-navigation-app This worked in IOS 18 but now on IOS26 it doesn't work, eg the map in the CarPlay app no longer shows up. I don't see any docks to say what has changed, I wonder if anyone has any ideas?
0
0
194
Jun ’25
How to make a screen-record guiding video
I'm creating an app on recording screen by using ReplayKit. I want to make a user operation video to guide user how to use my app to record screen. So, I need record a video on how to record screen and this approach is a bit awkward. I tried several ways of Screen Mirroring such as AirPlayer and QuickTime, but the recording button on control-center is disable while using Screen Mirroring. The effect I want is as follows: https://support.apple.com/library/content/dam/edam/applecare/images/en_US/iOS/ios13-iphone-xs-control-center-screen-record-animation.gif How was this video made?
0
0
385
Sep ’20
Tilemap Pathfinding on Hexagonal Maps (showcase)
I thought you'd like to see this pathfinding example on a hexagon tilemap. Unfortunately, I can't embed images so you'll have to click on the links (sorry for that). Image: http://tilemapkit.com/tkwp/wp-content/uploads/Screen-Shot-2015-07-11-at-20.06.18.pngVideo: https://www.youtube.com/watch?v=mq9UGYRiaagCode sample:NSArray* walkableTiles = [map tilesWithProperty:@walkable value:@1];NSArray* blockedTiles = [map tilesWithProperty:@blocked value:@1];GKGridGraph* graph = [map gridGraphForTileLayersNamed:@[@Ground, @Objects, @Vehicles] walkableTiles:walkableTiles blockedTiles:blockedTiles diagonalsAllowed:YES];For more info see http://tilemapkit.com
0
0
510
Jul ’15
Reply to Apple Maps App crashes
10/21/2020- Apple Maps crashes 30 seconds in every time. Crashes more often when using apps like Spotify. crashes= I’ve mapped a location and started directions. 30 seconds in the app closes stops mapping and I have to start directions over. I’ve since moved onto google maps
Oct ’20
Reply to Apple Business Manager
Hello, The Apple Business Manager portal underwent some changes lately and we have adjusted our documentation to match. See the section that begins here: https://support.apple.com/guide/apple-business-manager/intro-to-device-management-asm6a88f692e/web The device assignment section is here: https://support.apple.com/guide/apple-business-manager/assign-reassign-or-unassign-devices-asmf500c0851/web As far as manual device enrollment goes, this is done with Apple Configurator 2 and the devices will appear in Apple Business Manager under “Devices added by Apple Configurator 2”: https://support.apple.com/guide/apple-business-manager/assign-devices-added-from-apple-configurator-apd200a54d59/web Hope this helps!
Nov ’20
Web map calls cost beyond free limit ?
Hi, Apple web maps page (https://developer.apple.com/maps/web/) states: MapKit JS beta provides a free daily limit of 250,000 map views and 25,000 service calls per Apple Developer Program membership. For additional capacity needs, contact us. I am interested to know what are charges for usage beyond this limit. I have dropped multiple emails at 'contact us' however there has been no reply to my query.
0
0
561
Sep ’20
Using Google Maps in App to determine distance
So far, we have been using Google Maps to determine distance along a certain route for a MacOS app to register kilometers for a business administration app. But, this is no longer possible, as the login for google maps no longer works. I understand we would have to pay to continue using the Google Maps service as it was and we would have to make changes to the app. That would be ok, but I was just wondering does any developer on this forum have suggestions on how to resolve this issue? Or even maybe have suggestions, to make this work better than before. Three suggestions by chatgpt: use ANWB route planner using google maps, Pro6pp, or to useWisp.Software (something I haven't heard of before. Your suggestions and ideas are welcome. Also, if the Apple Developer team knows of a way how to do this in your app, your advice is more than welcome. Have a nice day!
2
0
667
Feb ’25
Deleting rows from Tile Map Node
I laid out a pretty large tile map node in the normal way for the U.S. Left to right, top to bottom, and found out there is too much space vertically. Too many rows. If I change the map size, it removes rows from the top and not the bottom! Like that Google Cheesebuger with the cheese on the bottom, it makes sense in a different culture, but not ours. So how can I move everything down 10 rows, or remove rows from the bottom, or something else so I can reduce the map size and clip the scene to just the right amount of vertical space?
0
0
757
Jan ’18
Reply to Rename the street on the Apple map
Thanks for reply! I have tried to rename the street on the Apple via map settings many times / Report an Issue/Map Labels/ Rename roads category but unfortunately do not have any feedback yet. I also submitted an inquiry on the Apple Maps Product Feedback website and got an answer that my issue was forwarded to the internal team of the map but it may fall into the category of being longer-term fixes. I need to know is it possible to speed up the process of fixing the issue? Can I hope that this issue will be finally fixed?
Nov ’21
SwiftUI Map Annotation Coordinate Animation
Hi, I have a SwiftUI Map with a set of three annotations. These annotations move around, and I would like to animate their movement from one coordinate to another, but I'm not finding a way to do that. I've tried using withAnimation { } when setting my array of Identifiable models that back the Annotations, and I've tried adding the .animation(.default, annotationModels) modifier to my Map object (where annotationModels is the array that backs my Annotations). The animation modifier doesn't work on Annotation structs, and it doesn't work if I add the animation modifier within the Annotation's view either. Does anyone have any suggestions on how I might be able to animate the coordinates of annotations using a SwiftUI Map? Does the problem have to do with the fact that I have an array of these annotations?
1
0
740
Jul ’24
NSExpression syntax for mapping
I have an NSOrderedSet of a custom class CDRoute which wraps and provides dynamic member lookup to a custom enumeration type called Route. The Route type has a property called precedence (Int16 type) and I would like to have a derived core data attribute where I can access the highest precedence value in the NSOrderedSet. This is relatively straightforward using Swift Computed Properties but I would like to incorporate this using core data since I've been having difficulty with changes being noticed. Due to the blatant lack of documentation surrounding how to construct a format string/woefully out of date documentation that describes how to do it in code but not how to format it in the Core Data model editor, I'm having a really difficult time with this. Is there any way to do something equivalent to the Swift map function ie stops.routesServed.map({ $0.precedence }).@max where stops.routesServed is the NSOrderedSet?
1
0
990
Jan ’23
Reply to Place Card API - SwiftUI
.mapFeatureSelectionAccessory(.automatic) shows a Place Card with a fixed directions action that always routes through Apple Maps. There's no modifier today that lets you intercept that tap or substitute your own routing engine. However you can register your app as a routing app so Apple Maps and other apps can hand off directions requests to your app. See Configuring Maps support.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
1w
iOS map navigation ability on lock sceen
Is there any API for navigation on lock screen like the Apple maps app? If not, please provide all the APIs that related to custom lock screen.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
871
Activity
Jul ’15
Core Data Mapping Models
Is there an easier way in Xcode to create mapping models. Currently I'm on model 15 and having to create individual models from 1 to 15 is time consuming. I've tried copying an older model and changing the destination but am unable to see any of the new fields added
Replies
0
Boosts
0
Views
441
Activity
Aug ’20
Changes to CarPlay maps Application scene
I am looking at the demo code for CarPlay Maps app - https://developer.apple.com/documentation/carplay/integrating-carplay-with-your-navigation-app This worked in IOS 18 but now on IOS26 it doesn't work, eg the map in the CarPlay app no longer shows up. I don't see any docks to say what has changed, I wonder if anyone has any ideas?
Replies
0
Boosts
0
Views
194
Activity
Jun ’25
How to make a screen-record guiding video
I'm creating an app on recording screen by using ReplayKit. I want to make a user operation video to guide user how to use my app to record screen. So, I need record a video on how to record screen and this approach is a bit awkward. I tried several ways of Screen Mirroring such as AirPlayer and QuickTime, but the recording button on control-center is disable while using Screen Mirroring. The effect I want is as follows: https://support.apple.com/library/content/dam/edam/applecare/images/en_US/iOS/ios13-iphone-xs-control-center-screen-record-animation.gif How was this video made?
Replies
0
Boosts
0
Views
385
Activity
Sep ’20
Tilemap Pathfinding on Hexagonal Maps (showcase)
I thought you'd like to see this pathfinding example on a hexagon tilemap. Unfortunately, I can't embed images so you'll have to click on the links (sorry for that). Image: http://tilemapkit.com/tkwp/wp-content/uploads/Screen-Shot-2015-07-11-at-20.06.18.pngVideo: https://www.youtube.com/watch?v=mq9UGYRiaagCode sample:NSArray* walkableTiles = [map tilesWithProperty:@walkable value:@1];NSArray* blockedTiles = [map tilesWithProperty:@blocked value:@1];GKGridGraph* graph = [map gridGraphForTileLayersNamed:@[@Ground, @Objects, @Vehicles] walkableTiles:walkableTiles blockedTiles:blockedTiles diagonalsAllowed:YES];For more info see http://tilemapkit.com
Replies
0
Boosts
0
Views
510
Activity
Jul ’15
Reply to Apple Maps App crashes
10/21/2020- Apple Maps crashes 30 seconds in every time. Crashes more often when using apps like Spotify. crashes= I’ve mapped a location and started directions. 30 seconds in the app closes stops mapping and I have to start directions over. I’ve since moved onto google maps
Replies
Boosts
Views
Activity
Oct ’20
Reply to Apple Business Manager
Hello, The Apple Business Manager portal underwent some changes lately and we have adjusted our documentation to match. See the section that begins here: https://support.apple.com/guide/apple-business-manager/intro-to-device-management-asm6a88f692e/web The device assignment section is here: https://support.apple.com/guide/apple-business-manager/assign-reassign-or-unassign-devices-asmf500c0851/web As far as manual device enrollment goes, this is done with Apple Configurator 2 and the devices will appear in Apple Business Manager under “Devices added by Apple Configurator 2”: https://support.apple.com/guide/apple-business-manager/assign-devices-added-from-apple-configurator-apd200a54d59/web Hope this helps!
Replies
Boosts
Views
Activity
Nov ’20
Web map calls cost beyond free limit ?
Hi, Apple web maps page (https://developer.apple.com/maps/web/) states: MapKit JS beta provides a free daily limit of 250,000 map views and 25,000 service calls per Apple Developer Program membership. For additional capacity needs, contact us. I am interested to know what are charges for usage beyond this limit. I have dropped multiple emails at 'contact us' however there has been no reply to my query.
Replies
0
Boosts
0
Views
561
Activity
Sep ’20
Using Google Maps in App to determine distance
So far, we have been using Google Maps to determine distance along a certain route for a MacOS app to register kilometers for a business administration app. But, this is no longer possible, as the login for google maps no longer works. I understand we would have to pay to continue using the Google Maps service as it was and we would have to make changes to the app. That would be ok, but I was just wondering does any developer on this forum have suggestions on how to resolve this issue? Or even maybe have suggestions, to make this work better than before. Three suggestions by chatgpt: use ANWB route planner using google maps, Pro6pp, or to useWisp.Software (something I haven't heard of before. Your suggestions and ideas are welcome. Also, if the Apple Developer team knows of a way how to do this in your app, your advice is more than welcome. Have a nice day!
Replies
2
Boosts
0
Views
667
Activity
Feb ’25
What does it mean that safe space layout guide is backwards deployable?
What does it mean in WWDC 2017 Auto Layout Techniques in Interface Builder that Safe Space layout guide is backwards deployable?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
616
Activity
Oct ’17
Deleting rows from Tile Map Node
I laid out a pretty large tile map node in the normal way for the U.S. Left to right, top to bottom, and found out there is too much space vertically. Too many rows. If I change the map size, it removes rows from the top and not the bottom! Like that Google Cheesebuger with the cheese on the bottom, it makes sense in a different culture, but not ours. So how can I move everything down 10 rows, or remove rows from the bottom, or something else so I can reduce the map size and clip the scene to just the right amount of vertical space?
Replies
0
Boosts
0
Views
757
Activity
Jan ’18
Reply to Rename the street on the Apple map
Thanks for reply! I have tried to rename the street on the Apple via map settings many times / Report an Issue/Map Labels/ Rename roads category but unfortunately do not have any feedback yet. I also submitted an inquiry on the Apple Maps Product Feedback website and got an answer that my issue was forwarded to the internal team of the map but it may fall into the category of being longer-term fixes. I need to know is it possible to speed up the process of fixing the issue? Can I hope that this issue will be finally fixed?
Replies
Boosts
Views
Activity
Nov ’21
SwiftUI Map Annotation Coordinate Animation
Hi, I have a SwiftUI Map with a set of three annotations. These annotations move around, and I would like to animate their movement from one coordinate to another, but I'm not finding a way to do that. I've tried using withAnimation { } when setting my array of Identifiable models that back the Annotations, and I've tried adding the .animation(.default, annotationModels) modifier to my Map object (where annotationModels is the array that backs my Annotations). The animation modifier doesn't work on Annotation structs, and it doesn't work if I add the animation modifier within the Annotation's view either. Does anyone have any suggestions on how I might be able to animate the coordinates of annotations using a SwiftUI Map? Does the problem have to do with the fact that I have an array of these annotations?
Replies
1
Boosts
0
Views
740
Activity
Jul ’24
NSExpression syntax for mapping
I have an NSOrderedSet of a custom class CDRoute which wraps and provides dynamic member lookup to a custom enumeration type called Route. The Route type has a property called precedence (Int16 type) and I would like to have a derived core data attribute where I can access the highest precedence value in the NSOrderedSet. This is relatively straightforward using Swift Computed Properties but I would like to incorporate this using core data since I've been having difficulty with changes being noticed. Due to the blatant lack of documentation surrounding how to construct a format string/woefully out of date documentation that describes how to do it in code but not how to format it in the Core Data model editor, I'm having a really difficult time with this. Is there any way to do something equivalent to the Swift map function ie stops.routesServed.map({ $0.precedence }).@max where stops.routesServed is the NSOrderedSet?
Replies
1
Boosts
0
Views
990
Activity
Jan ’23