Search results for

“Apple Maps Guides”

155,834 results found

Post

Replies

Boosts

Views

Activity

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
779
Sep ’19
Class Activation Maps with CoreML
Hi, I am trying to build a simple image classification app. I have a trained model using Keras and have it converted to an MLModel. Basing on the sample app in the CoreML documentation, I can use my model to classify a given image. But i would also like to visualize how model gives the classification. Is there a way I can show class activation maps along with the predictions in the app? Thanks!
1
0
929
May ’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
652
Nov ’15
How to know when Map is done painting after create
I've noticed bugs when you attempt to modify a map (set region or other things) immediately after creating the map. I noticed that if you load mapkit, wait 5 seconds then create a map, it makes about 5 network calls, downloads a js file, and runs some javascript. I have an issue where I have to do some loading after the map is fully ready, and may need to destroy the original map. To make a test of this, try creating a map then immediately call destroy and unmounting it. It'll produce a bunch of not defined errors as it's still trying to set up the map you just destroyed How do I know that the map that was created is ready and done with all the work it was doing? When is it safe to destroy that map? I found there is a property called map._impl.state that will be Initialized or Ready. But when it gets to Ready it is still not fully done loading, a destroy there will still cause errors. Is there an event listener or any wa
1
0
508
Jul ’20
iOS 18 - Google maps and Waze issue
Using either of these with CarPlay now the phone must remain open and unlocked and the maps must be active. Of the maps app for either of these apps gets closed, on Google Maps the map freezes and will not do anything. I also am unable to keep my phone open and unlocked using Google maps. on Waze the maps screen just turns off if the phone is locked or the Waze app isn’t open and active. Additionally when starting Waze on the split screen where it shows music, maps, and the next turn on CarPlay, the next turn screen appears as if the Waze app is just open but not headed in a specific direction So it just says search. You have to open to the full screen Waze app on the car play screen then back to the split screen for it to work. Google maps is effectively broken while Waze can be used with a work around. Though Waze also randomly stops the directions and goes back to just showing the maps and you have to get directions again to r
7
0
4.8k
Jul ’24
Hybrid Map displays oddly in Simulator
When displaying an Apple map within my app, the standard and satellite types of a fully zoomed-out view of North America both display perfectly on the Xcode Simulator, but the hybrid type is very different. The hybrid map shows up as a image with a dark gray background, with the names of the cities in the correct places, but only showing a jagged red line for some of the edges of the continents. Zooming in does not help. If I can find a way to post an image, I'll do so. I'm running Xcode version 7.0.1 (7A1001) on OS X Yosemite 10.10.5. Within Xcode, my deployment target is iOS 9.0 -- the problem still persists if i switch to iOS 8.0. Haven't gotten to the point where I can run the app on an actual device yet.
7
0
579
Oct ’15
Adding a map to my project crashes
When adding a map anywhere in our project whether it be through a xib, storyboard or programmatically will crash the app. This crash occurs on a physical device. Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[VKMapView layer]: unrecognized selector sent to instance 0x109695d60' I'm using xcode 14.1 OS Ventura 13.0.1 MacBook Pro 16in 2019
1
0
628
Dec ’22
SwiftUI MapKit Map - Selecting Points of Interest
Is it possible to let the user select points of interest on the Map, such as restaurants, grocery stores, gas stations etc. I want the user to be able to select these points of interest that are already on the map, not those that I add to the map. Is this possible with the SwiftUI version of the MapKit Map?
3
0
1.4k
Oct ’24
Map size for MapKit JS on mobile
Hello, This code works fine for desktop, but it's very difficult to display user location, map type controls for mobile. The map's existence depends on the height property only. The controls depend on the width one. Although the algorithm is not clear. I see that the width must be more or equal to display width. It works for portrait, but not for landscape. How to get stable appearance of the controls for any cases? I used iPhone SE 1.
1
0
704
Jul ’21
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
582
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
779
Activity
Sep ’19
Class Activation Maps with CoreML
Hi, I am trying to build a simple image classification app. I have a trained model using Keras and have it converted to an MLModel. Basing on the sample app in the CoreML documentation, I can use my model to classify a given image. But i would also like to visualize how model gives the classification. Is there a way I can show class activation maps along with the predictions in the app? Thanks!
Replies
1
Boosts
0
Views
929
Activity
May ’19
How do I create a map region that is not circular?
Is it possible to create a map region that is not circular but shaped based on landmark boundaries?
Replies
1
Boosts
0
Views
559
Activity
Dec ’17
Required 1x size of map annotation?
what is the required 1x size of a map annotation image?thanks.Neerav
Replies
2
Boosts
0
Views
458
Activity
Dec ’15
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
652
Activity
Nov ’15
How to know when Map is done painting after create
I've noticed bugs when you attempt to modify a map (set region or other things) immediately after creating the map. I noticed that if you load mapkit, wait 5 seconds then create a map, it makes about 5 network calls, downloads a js file, and runs some javascript. I have an issue where I have to do some loading after the map is fully ready, and may need to destroy the original map. To make a test of this, try creating a map then immediately call destroy and unmounting it. It'll produce a bunch of not defined errors as it's still trying to set up the map you just destroyed How do I know that the map that was created is ready and done with all the work it was doing? When is it safe to destroy that map? I found there is a property called map._impl.state that will be Initialized or Ready. But when it gets to Ready it is still not fully done loading, a destroy there will still cause errors. Is there an event listener or any wa
Replies
1
Boosts
0
Views
508
Activity
Jul ’20
iOS 18 - Google maps and Waze issue
Using either of these with CarPlay now the phone must remain open and unlocked and the maps must be active. Of the maps app for either of these apps gets closed, on Google Maps the map freezes and will not do anything. I also am unable to keep my phone open and unlocked using Google maps. on Waze the maps screen just turns off if the phone is locked or the Waze app isn’t open and active. Additionally when starting Waze on the split screen where it shows music, maps, and the next turn on CarPlay, the next turn screen appears as if the Waze app is just open but not headed in a specific direction So it just says search. You have to open to the full screen Waze app on the car play screen then back to the split screen for it to work. Google maps is effectively broken while Waze can be used with a work around. Though Waze also randomly stops the directions and goes back to just showing the maps and you have to get directions again to r
Replies
7
Boosts
0
Views
4.8k
Activity
Jul ’24
Does Swift MKMapView charges for Map usage ?
If I am using MKMapView in my App do I need to pay any cost for using map.
Replies
0
Boosts
0
Views
242
Activity
Nov ’23
Hybrid Map displays oddly in Simulator
When displaying an Apple map within my app, the standard and satellite types of a fully zoomed-out view of North America both display perfectly on the Xcode Simulator, but the hybrid type is very different. The hybrid map shows up as a image with a dark gray background, with the names of the cities in the correct places, but only showing a jagged red line for some of the edges of the continents. Zooming in does not help. If I can find a way to post an image, I'll do so. I'm running Xcode version 7.0.1 (7A1001) on OS X Yosemite 10.10.5. Within Xcode, my deployment target is iOS 9.0 -- the problem still persists if i switch to iOS 8.0. Haven't gotten to the point where I can run the app on an actual device yet.
Replies
7
Boosts
0
Views
579
Activity
Oct ’15
Adding a map to my project crashes
When adding a map anywhere in our project whether it be through a xib, storyboard or programmatically will crash the app. This crash occurs on a physical device. Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[VKMapView layer]: unrecognized selector sent to instance 0x109695d60' I'm using xcode 14.1 OS Ventura 13.0.1 MacBook Pro 16in 2019
Replies
1
Boosts
0
Views
628
Activity
Dec ’22
SwiftUI MapKit Map - Selecting Points of Interest
Is it possible to let the user select points of interest on the Map, such as restaurants, grocery stores, gas stations etc. I want the user to be able to select these points of interest that are already on the map, not those that I add to the map. Is this possible with the SwiftUI version of the MapKit Map?
Replies
3
Boosts
0
Views
1.4k
Activity
Oct ’24
Reply to How do you purchase and place an app on Apple?
Have you read any of Apple's documentation?I would start with the App Distribution Guide.
Replies
Boosts
Views
Activity
Sep ’15
Why was the new Core Data guide only released with Objective-C code?
I'm surprised that Apple released the new Core Data guide with examples written only in Objective-C. I've been thinking in Swift idioms now for a while and it's hard to go back and forth. Please release the guide with Swift sample code.
Replies
2
Boosts
0
Views
149
Activity
Aug ’15
Map size for MapKit JS on mobile
Hello, This code works fine for desktop, but it's very difficult to display user location, map type controls for mobile. The map's existence depends on the height property only. The controls depend on the width one. Although the algorithm is not clear. I see that the width must be more or equal to display width. It works for portrait, but not for landscape. How to get stable appearance of the controls for any cases? I used iPhone SE 1.
Replies
1
Boosts
0
Views
704
Activity
Jul ’21