Search results for

“Apple Maps Guides”

159,851 results found

Post

Replies

Boosts

Views

Activity

Complex Map View Swift UI
Hi, I am trying to create the floating panel from the Apple Maps app in Swift UI however it seems to be fairly complicated to create compared to using UIKit. I have to do a lot of nesting of elements. Does anybody have any suggestions on how to go about creating this in a simple manner? Thanks :)
0
0
275
Sep ’20
Turn Image into a threshold map
Hi,I am looking for ways to create an application which would capture an image, set a threshold to it and then use it as a map for playing sounds.Please see a link to (some gif) concept sketch below.http://68.media.tumblr.com/cb7aad23f3ed2ce6167fc23e04c56e90/tumblr_oab4p2YGGv1th73nko1_1280.gifI am new to swift and I am excited for this to be a challenge, but I'd really like to get some thoughts on where to start with.I have found a somewhat similar application done with Python where using imageProcessing, an image of a skyline is converted to a threshold map and then a vector line is extracted which is then used for amplitude envelope.(This) - 'Turning Skylines into Sound'Let me know what you think!Thanks,Lukasvaliaugalukas.lt
1
0
330
Apr ’17
location feature is not integrated with built-in mapping functionality
My app uses location feature and Google map view not the Mapkit and is in the store from Aug 3, 2015. Recently(Apr 28, 2016) i submitted an update and didn't introduce any new map features. But I got rejected for my app’s location feature is not integrated with the built-in mapping functionality, which limits users to a third party Maps applicationFrom Apple10.6 - Apple and our customers place a high value on simple, refined, creative, well thought through interfaces. They take more work but are worth it. Apple sets a high bar. If your user interface is complex or less than very good, it may be rejected10.6 DetailsYour app’s location feature is not integrated with the built-in mapping functionality, which limits users to a third party Maps application.Next StepsPlease revise your app to give users the option to launch the native Apple Maps application.Does this means- i just have to put some option just to launch the nat
3
0
1.8k
May ’16
Reply to WKInterfaceMap is not shown on WatchOS 2 project
When saying you should start the iPhone Maps app, mean the one from Apple, not 'your maps app'. This somehow triggers the Apple Watch Simulator map to render properly.If you are having connectivity issues, suggest looking at the Potloc sample code.https://developer.apple.com/library/prerelease/watchos/samplecode/PotLoc/Introduction/Intro.html
Topic: App & System Services SubTopic: General Tags:
Oct ’15
CarPlay Map Displays White Screen
Hello, I'm somewhat new to CarPlay integration and am having an issue. I have ready through Apple's CarPlay Programming Guide, reviewed their code samples and have exhausted my searches online to help find a solution to my problem. I have been unable to get a basic map to display on my CarPlay map utilizing the following: import CarPlay class CarPlaySceneDelegate: UIResponder, CPTemplateApplicationSceneDelegate { var interfaceController: CPInterfaceController? var window: CPWindow? func templateApplicationScene(_ templateApplicationScene: CPTemplateApplicationScene, didConnect interfaceController: CPInterfaceController) { self.interfaceController = interfaceController let mapTemplate = CPMapTemplate() mapTemplate.mapDelegate = self interfaceController.setRootTemplate(mapTemplate, animated: true, completion: { success, error in if let error = error { debugPrint(Error: (error)) } else { print(CarPlay Map Should Be Displayed) } }) let trip = CPTrip(origin: MKMapItem(p
1
0
991
Aug ’24
SwiftUI Map() delegate access.
Greetings, I'm attempting to refactor a SwiftUI application. From: IUViewRepresentable of MapView To: SwiftUI's native Map() view. However my application has to be able to react to the user's panning and zooming. In my UIViewRepresentable version, I added MKMapViewDelagate protocol to the Coordinator class, and create mapView(_ mapView:regionDidChangeAnimated) How can assign a delegate class to the SwiftUI native version to accomplish this? I've seen some posts use an init() method to adjust the appearance of the map with MKMapView.appearance(). Turns out this has a delegate property, but assigning a delegate here does not result in the mapView:regionDidChangeAnimated method being called...
6
0
4.2k
Oct ’20
How the depth-map is aligned to rgb image ?
I want to know are depth map and RGB image are perfectly aligned(do both have the same principle point)? If yes then how the depth- map is created. The depth map on iphone12 has 256x192 resolution as opposed to an RGB image (1920x1440). I am interested in exact pixel-wise depth. Is it possible to get the raw depth map of 1920x1440 resolution ? How is the depth-map is created at 256 x 192 resolution? Behind the scenes does the pipeline captures it at 1920 x1440 resolution and then resize it to 256x192? I have so many questions as there are no intrinsic, extrinsic, and calibration data given regarding the lidar. I would greatly appreciate it if someone can explain the steps from a computer-vision perspective. Many Thanks
8
0
3.5k
Aug ’21
Where are the "Guides" and "Sample Code" sections in the documentation?
Hi all.In the iBook Apple Education course App Development with Swift, there is this statement: “For example, reopen the documentation window (if it's not still open) and search for UIViewController again. Near the bottom of the search results, you'll see two sections called Guides and Sample Code.”Excerpt From: Apple Education. “App Development with Swift.” Apple Inc. - Education, 2017. iBooks. https://itunes.apple.com/ca/book/app-development-with-swift/id1219117996?mt=11Well... in my version of Xcode (9.2) under Os X (10.12.6), those sections are NOT there! And judging from the example provided in the book, I would think they would be VERY helpful!Where are they now???Thanks!
1
0
3.5k
Aug ’18
UserLocation stops updating when map is touched
My issue is essentially the same described in MKUserLocation stops updating when map is touched, except for Mapkit JS. That question has been left without answer and the chat has been removed so I'm left wondering what the outcome was. In short, I create a Mapkit JS map, I set: map.tracksUserLocation = true; map.showsUserLocation = true; This shows and tracks the user's position on the map. Once I pan/zoom the map map.tracksUserLocation is set to false (as it should). However the user's dot stops updating entirely as well. I have ran some testing and it looks that if I initially only set map.showsUserLocation to true but don't specify wether the map should track the user's location, the user's dot will simply not show up at all. I can override this behaviour by constantly setting both variables to true, but as you can imagine the experience is awful. My code is essentially the bare basics. const map = new mapkit.Map('map'); map.tracksUserLocation
0
0
546
Feb ’22
Reply to WeatherKit raday overlays
The weather map overlays--including the precipitation maps--shown in the Apple Weather app are not available via the WeatherKit API.
Replies
Boosts
Views
Activity
Nov ’25
Cannot disable Maps capability
Hello everyone, Recently I enabled the Maps capability in my iOS Xcode project and now I cannot disable it.iMac 14,3Xcode 8.2.1macOS Sierra 10.12.2
Replies
3
Boosts
0
Views
1.2k
Activity
Jan ’17
Maps and incorrect GPS location
I was just playing around with the map program ,and it shows my location incorrectly anyone else noticed this ? A 6s + and a 7 show the same but a SE on 11.2.5 is correct.
Replies
1
Boosts
0
Views
541
Activity
Feb ’18
Complex Map View Swift UI
Hi, I am trying to create the floating panel from the Apple Maps app in Swift UI however it seems to be fairly complicated to create compared to using UIKit. I have to do a lot of nesting of elements. Does anybody have any suggestions on how to go about creating this in a simple manner? Thanks :)
Replies
0
Boosts
0
Views
275
Activity
Sep ’20
Turn Image into a threshold map
Hi,I am looking for ways to create an application which would capture an image, set a threshold to it and then use it as a map for playing sounds.Please see a link to (some gif) concept sketch below.http://68.media.tumblr.com/cb7aad23f3ed2ce6167fc23e04c56e90/tumblr_oab4p2YGGv1th73nko1_1280.gifI am new to swift and I am excited for this to be a challenge, but I'd really like to get some thoughts on where to start with.I have found a somewhat similar application done with Python where using imageProcessing, an image of a skyline is converted to a threshold map and then a vector line is extracted which is then used for amplitude envelope.(This) - 'Turning Skylines into Sound'Let me know what you think!Thanks,Lukasvaliaugalukas.lt
Replies
1
Boosts
0
Views
330
Activity
Apr ’17
location feature is not integrated with built-in mapping functionality
My app uses location feature and Google map view not the Mapkit and is in the store from Aug 3, 2015. Recently(Apr 28, 2016) i submitted an update and didn't introduce any new map features. But I got rejected for my app’s location feature is not integrated with the built-in mapping functionality, which limits users to a third party Maps applicationFrom Apple10.6 - Apple and our customers place a high value on simple, refined, creative, well thought through interfaces. They take more work but are worth it. Apple sets a high bar. If your user interface is complex or less than very good, it may be rejected10.6 DetailsYour app’s location feature is not integrated with the built-in mapping functionality, which limits users to a third party Maps application.Next StepsPlease revise your app to give users the option to launch the native Apple Maps application.Does this means- i just have to put some option just to launch the nat
Replies
3
Boosts
0
Views
1.8k
Activity
May ’16
Reply to WKInterfaceMap is not shown on WatchOS 2 project
When saying you should start the iPhone Maps app, mean the one from Apple, not 'your maps app'. This somehow triggers the Apple Watch Simulator map to render properly.If you are having connectivity issues, suggest looking at the Potloc sample code.https://developer.apple.com/library/prerelease/watchos/samplecode/PotLoc/Introduction/Intro.html
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’15
CarPlay Map Displays White Screen
Hello, I'm somewhat new to CarPlay integration and am having an issue. I have ready through Apple's CarPlay Programming Guide, reviewed their code samples and have exhausted my searches online to help find a solution to my problem. I have been unable to get a basic map to display on my CarPlay map utilizing the following: import CarPlay class CarPlaySceneDelegate: UIResponder, CPTemplateApplicationSceneDelegate { var interfaceController: CPInterfaceController? var window: CPWindow? func templateApplicationScene(_ templateApplicationScene: CPTemplateApplicationScene, didConnect interfaceController: CPInterfaceController) { self.interfaceController = interfaceController let mapTemplate = CPMapTemplate() mapTemplate.mapDelegate = self interfaceController.setRootTemplate(mapTemplate, animated: true, completion: { success, error in if let error = error { debugPrint(Error: (error)) } else { print(CarPlay Map Should Be Displayed) } }) let trip = CPTrip(origin: MKMapItem(p
Replies
1
Boosts
0
Views
991
Activity
Aug ’24
Parse Mach-O debug map
How are debug maps saved in Mach-O files? I'm trying to essentially recreate the output of dsymutil -dump-debug-map.
Replies
4
Boosts
0
Views
1.1k
Activity
Sep ’23
Static Maps (Snapshot) MapkitJS
Is there any way to load a static map using MapkitJS? I see there are some solutions using the Swift implementation using the snapshot functionality, but I can't find anything from the MapkitJS docs.
Replies
3
Boosts
0
Views
3.8k
Activity
Apr ’19
SwiftUI Map() delegate access.
Greetings, I'm attempting to refactor a SwiftUI application. From: IUViewRepresentable of MapView To: SwiftUI's native Map() view. However my application has to be able to react to the user's panning and zooming. In my UIViewRepresentable version, I added MKMapViewDelagate protocol to the Coordinator class, and create mapView(_ mapView:regionDidChangeAnimated) How can assign a delegate class to the SwiftUI native version to accomplish this? I've seen some posts use an init() method to adjust the appearance of the map with MKMapView.appearance(). Turns out this has a delegate property, but assigning a delegate here does not result in the mapView:regionDidChangeAnimated method being called...
Replies
6
Boosts
0
Views
4.2k
Activity
Oct ’20
How the depth-map is aligned to rgb image ?
I want to know are depth map and RGB image are perfectly aligned(do both have the same principle point)? If yes then how the depth- map is created. The depth map on iphone12 has 256x192 resolution as opposed to an RGB image (1920x1440). I am interested in exact pixel-wise depth. Is it possible to get the raw depth map of 1920x1440 resolution ? How is the depth-map is created at 256 x 192 resolution? Behind the scenes does the pipeline captures it at 1920 x1440 resolution and then resize it to 256x192? I have so many questions as there are no intrinsic, extrinsic, and calibration data given regarding the lidar. I would greatly appreciate it if someone can explain the steps from a computer-vision perspective. Many Thanks
Replies
8
Boosts
0
Views
3.5k
Activity
Aug ’21
Where are the "Guides" and "Sample Code" sections in the documentation?
Hi all.In the iBook Apple Education course App Development with Swift, there is this statement: “For example, reopen the documentation window (if it's not still open) and search for UIViewController again. Near the bottom of the search results, you'll see two sections called Guides and Sample Code.”Excerpt From: Apple Education. “App Development with Swift.” Apple Inc. - Education, 2017. iBooks. https://itunes.apple.com/ca/book/app-development-with-swift/id1219117996?mt=11Well... in my version of Xcode (9.2) under Os X (10.12.6), those sections are NOT there! And judging from the example provided in the book, I would think they would be VERY helpful!Where are they now???Thanks!
Replies
1
Boosts
0
Views
3.5k
Activity
Aug ’18
UserLocation stops updating when map is touched
My issue is essentially the same described in MKUserLocation stops updating when map is touched, except for Mapkit JS. That question has been left without answer and the chat has been removed so I'm left wondering what the outcome was. In short, I create a Mapkit JS map, I set: map.tracksUserLocation = true; map.showsUserLocation = true; This shows and tracks the user's position on the map. Once I pan/zoom the map map.tracksUserLocation is set to false (as it should). However the user's dot stops updating entirely as well. I have ran some testing and it looks that if I initially only set map.showsUserLocation to true but don't specify wether the map should track the user's location, the user's dot will simply not show up at all. I can override this behaviour by constantly setting both variables to true, but as you can imagine the experience is awful. My code is essentially the bare basics. const map = new mapkit.Map('map'); map.tracksUserLocation
Replies
0
Boosts
0
Views
546
Activity
Feb ’22
Maps turn alerts haptics
Are Maps turn alerts haptics and sounds working for anyone in watchOS 5?Cannot get to work for me.Tried unpairing and setting up as new - did not work
Replies
1
Boosts
0
Views
968
Activity
Jun ’18