Search results for

“Apple Maps Guides”

159,861 results found

Post

Replies

Boosts

Views

Activity

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
507
Jul ’15
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
555
Sep ’20
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
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
379
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
446
Feb ’25
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
729
Jul ’24
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
755
Jan ’18
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
985
Jan ’23
Mapping Future to Future in Combine
I’m finding Combine's Future publisher to useful as an API surface because by definition it produces zero or one values then finishes. If a function returns a future, the caller implictly knows it will only ever return a single value. I can use AnyPublisher and get essentially the same result, but I lose the self documenting aspect of supplying a single shot publisher.In some cases, I have a function consuming a future and returning a new future with an adjusted type. With a type like Result I can map one type to another, but Future.map returns a Publishers.Map type leading me back to AnyPublisher for my API. Is there a good way to map Future<Output, Failure> to Future<NewOutput, Failure>?Thanks,Nick* apologies for posting a beta framework related question in the language forum, but I can’t find a better place for it
0
0
790
Sep ’19
Draw vertical (up and out from map) lines from point on map, possible?
I have an unusual use-case where I would like to be able to draw vertical lines up from a map. I will have points deriving from geoTag'd entities, and a stored height and orientation of line (but for this discussion, assume straight up for simplicity (angled at a perpendicular to the surface of the globe). I am wanting to pull the MKMapKit back to reveal the globe so there is no need for accuracy of representation of the line resolution, it just needs to show. Kinda like oriented pins on a rounded pincushion. I have no code to show, as i have not yet been able to find anything like this. I prefer to use MapKit to show the earth properly, but am lost as to how to get started. I continue to search around looking for a hint or clue, to-date, no luck.Anyone have any ideas? thank you in advance.
0
0
611
Apr ’19
My App rejected for 20.1 guide line
My App got rejected for the guide line section of 20.1. Below is my project details.1. Users can create free contest and invite other users to join.2. Users can upload image, video and text.3. Users will vote and based on the number of likes leader board will be generated.4. App Owner (Admin) can only create sponsored and prize money contests. Admin have to give the sponsor name and image. But claiming the prize will be taken care in out of the app.This is simple flow of my project. I wanted to know why my app has rejected for 20.1 - Sweepstakes and contests must be sponsored by the developer/company of the App ?
3
0
657
Nov ’15
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
507
Activity
Jul ’15
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
555
Activity
Sep ’20
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
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
379
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
446
Activity
Feb ’25
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
729
Activity
Jul ’24
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
755
Activity
Jan ’18
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
985
Activity
Jan ’23
looking for guide to publish to App Store from Xcode
I am having problems trying to get all the parts of my app registration, certification, etc so it can be submitted to the App Store. At the moment I have a message in Xcode about the provisioning profile not containing a specific certificate. I am not able to find that certificate and am stuck. I would like to follow a guide. Is there such a thing?
Replies
0
Boosts
0
Views
596
Activity
Jul ’21
Mapping Future to Future in Combine
I’m finding Combine's Future publisher to useful as an API surface because by definition it produces zero or one values then finishes. If a function returns a future, the caller implictly knows it will only ever return a single value. I can use AnyPublisher and get essentially the same result, but I lose the self documenting aspect of supplying a single shot publisher.In some cases, I have a function consuming a future and returning a new future with an adjusted type. With a type like Result I can map one type to another, but Future.map returns a Publishers.Map type leading me back to AnyPublisher for my API. Is there a good way to map Future<Output, Failure> to Future<NewOutput, Failure>?Thanks,Nick* apologies for posting a beta framework related question in the language forum, but I can’t find a better place for it
Replies
0
Boosts
0
Views
790
Activity
Sep ’19
Reply to What a change in beta 3!
The only issue I've had so far is Maps; the actual map doesn't appear. Not a biggie. Otherwise, Apple Watch OS 2 beta 3.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’15
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
614
Activity
Oct ’17
Draw vertical (up and out from map) lines from point on map, possible?
I have an unusual use-case where I would like to be able to draw vertical lines up from a map. I will have points deriving from geoTag'd entities, and a stored height and orientation of line (but for this discussion, assume straight up for simplicity (angled at a perpendicular to the surface of the globe). I am wanting to pull the MKMapKit back to reveal the globe so there is no need for accuracy of representation of the line resolution, it just needs to show. Kinda like oriented pins on a rounded pincushion. I have no code to show, as i have not yet been able to find anything like this. I prefer to use MapKit to show the earth properly, but am lost as to how to get started. I continue to search around looking for a hint or clue, to-date, no luck.Anyone have any ideas? thank you in advance.
Replies
0
Boosts
0
Views
611
Activity
Apr ’19
My App rejected for 20.1 guide line
My App got rejected for the guide line section of 20.1. Below is my project details.1. Users can create free contest and invite other users to join.2. Users can upload image, video and text.3. Users will vote and based on the number of likes leader board will be generated.4. App Owner (Admin) can only create sponsored and prize money contests. Admin have to give the sponsor name and image. But claiming the prize will be taken care in out of the app.This is simple flow of my project. I wanted to know why my app has rejected for 20.1 - Sweepstakes and contests must be sponsored by the developer/company of the App ?
Replies
3
Boosts
0
Views
657
Activity
Nov ’15