Search results for

“Apple Maps Guides”

155,834 results found

Post

Replies

Boosts

Views

Activity

How to detect MapKit Map panning/scrolling ended
Hello, I'm trying to figure out how to detect when user stops scrolling (panning) the map. The problem: I have a MapAnnotation that I want to always keep in the centre, even is user is panning/scrolling the map. When map is open first time, the original annotation location is user's current location. I request the name of the location to display it on top of the annotation. when user moves the map around, I want to track when he stop this action and select a location in the centre of map's new region and display the a location's name on top of the annotation I can't use .onChange() because region centre changes constantly as user moves the map, because it causes to many requests for location's name DragGesture .onEnded() is never called, so I have no idea when customer stops moving the map So my question is - how to detect in this case when customer stopped moving the map? Have anyone faced the same problem? Any ideas how to solve it?
3
0
2.4k
Apr ’23
Incorrect 5.1 / Atmos channel mapping on Apple TV 4K (2022)
I ran 5.1 audio tests in both YouTube and Apple Music, and I noticed that when sound is supposed to play from the rear or front surround speakers, it’s also duplicated in the front left and right channels. I’m absolutely sure the issue is with the Apple TV, because I played the same video directly through my TV’s native system, and the channel separation was correct. Everything used to work perfectly before, so this must be a software issue. I’m currently on tvOS 26 Developer Beta 5, but I’m certain the problem also existed on the stable tvOS 18.5. I’ve already reset and updated my Apple TV, and I also tried switching the audio format to forced Dolby Atmos 5.1. On the forums, I mostly see complaints about Dolby Atmos not working at all — in my case, everything technically works, but not the way it’s supposed to.
1
0
101
Aug ’25
iOS26 UINavigationController swipe from middle on maps causing issue
I have a UINavigation controller which on the second viewController has a Google Map view. In iOS 18 you would navigate normally around the map, and swipe your finger from the left side of the screen to move the map, this worked correctly. However, in iOS 26 swiping from left to right from anywhere but the far right side of the screen will cause the UI to try to pop the viewController. This does not happen when I add Apple Maps or other map frameworks to the VC. Is there a way to disable the swipe from middle in iOS 26?
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
190
Oct ’25
Attaching custom depth map to an image
Hi,I am trying to attach a custom depth map as explained in this post:https://developer.apple.com/documentation/avfoundation/avdepthdata/creating_auxiliary_depth_data_manually?language=objcI converted the grayscale image to an NSData object and set in the kCGImageAuxiliaryDataInfoData Dictionary and i can save it successfully. But when i try to read it back its returns an invalid depth map.Note: the image is a single channel grayscale image which i extracted from a dual camera device. I now want to apply it to any image, just like DepthCam app on ios does. It allows the user to attach a depth map to any image from the roll and saves it as portrait mode supported image.Has any one been able to add a custom depth map successfully to an image?
1
0
1.3k
Apr ’19
Reply to Will this app's plan pass the review?
What makes your app any different to, say, just using a Maps app that has those locations listed? When I search Apple Maps for restaurants, it shows restaurants near me. Would it do the same thing your app wants to do? If your concept cafés don't show up in Apple Maps, it's likely that Apple objects to that sort of content, and they wouldn't allow an app. Any app has to have some functional use to its users. If you're just surfacing a list of cafés, then it offers nothing new.
Jul ’24
Map links/multiple points
I have a web page that I need to display multiple points on a map, and want to use the native app on the device if possible. I've read through:https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.htmlHowever, I don't see anyway to add multiple points, is there a way to do this? Just making sure I didn't miss something.Thanks
0
0
142
May ’16
Reply to How to launch Google Maps or Apple Maps from an iOS app with Swift
Hello Marchymanthx for your reply. What i mean is like this:http://www.reigndesign.com/blog/how-to-launch-google-maps-or-apple-maps-from-an-ios-app/Only this is written in ObjectC. I have an app with markers and i can't figered out how to setup directions with GoogleMaps SDK for ios. So i want to give the users an option to choose between googemaps en apple maps to get directions from the current location to de selected marker.thxx
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’15
Tap on maps to get coordinates
Hey guys, I recently started using Swiftui and would like to make a small app for my dad to use as a travel journal as my first project. He can create trips and then create multiple steps in a trip. When creating a step he should be able to set a location. Finding the location from the user is no problem. But now I also want to have the function to tap on the map and set a pin at a random location to get the coordinates (like google maps for example). Unfortunately I can't figure out from the documentation if there is a simple way to do this. import SwiftUI import MapKit struct StepLocationView: View { @EnvironmentObject var locationManagement: LocationDataManager @State private var position: MapCameraPosition = .automatic var body: some View { VStack { Map(position: $position) { UserAnnotation() } .navigationTitle(Search your location) .navigationBarTitleDisplayMode(.inline) .toolbarBackground(.visible, for: .navigationBar) .toolbarBackground(.ultraThinMaterial, for: .navigationBar
3
0
3.9k
Jul ’23
Step-by-step guide for SecKeyCreateWithData from OpenSSL PEM?
A quick search for SecKeyCreateWithData reveals that it isn't the most straight-forward API to use for many Developers' use-cases ...https://forums.developer.apple.com/thread/102621https://forums.developer.apple.com/thread/72445It seems reasonable that Developers who wish to use ECDSA for any sort of server <==> iOS communication discrete data exchange should be able to simply:1. Fire up Terminal2. Create Private + Public ECDSA keys:# Generate an ECDSA Private key. openssl ecparam -genkey -name prime256v1 -out ec256-private.pem # Generate an ECDSA Public key. openssl ec -in ec256-private.pem -pubout -out ec256-public.pem3. <-- Follow some steps to use the Base64 .pem to create keys in iOS -->4. Use SecKeyCreateWithData, ex:let publicKey = SecKeyCreateWithData(pemData as CFData ...)@eskimo -- might you consider creating a step-by-step tutorial as to your / Apple's best recommendation on how to accomplish this?Your responsiveness on the forums is excellent, so thank you. It just seems that
4
0
5.2k
May ’18
Safari App Extension Programming Guide missing
The document Safari App Extension Programming Guide appears to be missing. The URL https://developer.apple.com/library/content/documentation/NetworkingInternetWeb/Conceptual/SafariAppExtension_PG/ redirects to the SafariServices framework reference. The document was there a few weeks ago, and it was essential for creating my Safari app extension. Is this just a web site bug? Can the document be restored?
2
0
1.2k
May ’18
My Country Pakistan is not available in list. Anyone can guide please.?
Cant sign up as my Country Pakistan is not available in list. Anyone can guide please.?
Replies
4
Boosts
0
Views
1.5k
Activity
Nov ’16
How to detect MapKit Map panning/scrolling ended
Hello, I'm trying to figure out how to detect when user stops scrolling (panning) the map. The problem: I have a MapAnnotation that I want to always keep in the centre, even is user is panning/scrolling the map. When map is open first time, the original annotation location is user's current location. I request the name of the location to display it on top of the annotation. when user moves the map around, I want to track when he stop this action and select a location in the centre of map's new region and display the a location's name on top of the annotation I can't use .onChange() because region centre changes constantly as user moves the map, because it causes to many requests for location's name DragGesture .onEnded() is never called, so I have no idea when customer stops moving the map So my question is - how to detect in this case when customer stopped moving the map? Have anyone faced the same problem? Any ideas how to solve it?
Replies
3
Boosts
0
Views
2.4k
Activity
Apr ’23
Incorrect 5.1 / Atmos channel mapping on Apple TV 4K (2022)
I ran 5.1 audio tests in both YouTube and Apple Music, and I noticed that when sound is supposed to play from the rear or front surround speakers, it’s also duplicated in the front left and right channels. I’m absolutely sure the issue is with the Apple TV, because I played the same video directly through my TV’s native system, and the channel separation was correct. Everything used to work perfectly before, so this must be a software issue. I’m currently on tvOS 26 Developer Beta 5, but I’m certain the problem also existed on the stable tvOS 18.5. I’ve already reset and updated my Apple TV, and I also tried switching the audio format to forced Dolby Atmos 5.1. On the forums, I mostly see complaints about Dolby Atmos not working at all — in my case, everything technically works, but not the way it’s supposed to.
Replies
1
Boosts
0
Views
101
Activity
Aug ’25
Download offline map available programmatically?
Subject says it all: is or will there be a way to download offline maps programmatically?
Replies
1
Boosts
0
Views
2.0k
Activity
Jun ’23
iOS26 UINavigationController swipe from middle on maps causing issue
I have a UINavigation controller which on the second viewController has a Google Map view. In iOS 18 you would navigate normally around the map, and swipe your finger from the left side of the screen to move the map, this worked correctly. However, in iOS 26 swiping from left to right from anywhere but the far right side of the screen will cause the UI to try to pop the viewController. This does not happen when I add Apple Maps or other map frameworks to the VC. Is there a way to disable the swipe from middle in iOS 26?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
190
Activity
Oct ’25
App Clips: How are they associated with Maps places?
Hi there, I would like to understand the mechanism behind associating an App Clip to a Maps' Place. Is there documentation on it? Any other pointers or references? Thank you,
Replies
1
Boosts
0
Views
453
Activity
Jul ’20
Attaching custom depth map to an image
Hi,I am trying to attach a custom depth map as explained in this post:https://developer.apple.com/documentation/avfoundation/avdepthdata/creating_auxiliary_depth_data_manually?language=objcI converted the grayscale image to an NSData object and set in the kCGImageAuxiliaryDataInfoData Dictionary and i can save it successfully. But when i try to read it back its returns an invalid depth map.Note: the image is a single channel grayscale image which i extracted from a dual camera device. I now want to apply it to any image, just like DepthCam app on ios does. It allows the user to attach a depth map to any image from the roll and saves it as portrait mode supported image.Has any one been able to add a custom depth map successfully to an image?
Replies
1
Boosts
0
Views
1.3k
Activity
Apr ’19
Reply to Will this app's plan pass the review?
What makes your app any different to, say, just using a Maps app that has those locations listed? When I search Apple Maps for restaurants, it shows restaurants near me. Would it do the same thing your app wants to do? If your concept cafés don't show up in Apple Maps, it's likely that Apple objects to that sort of content, and they wouldn't allow an app. Any app has to have some functional use to its users. If you're just surfacing a list of cafés, then it offers nothing new.
Replies
Boosts
Views
Activity
Jul ’24
Reply to GPS and Compass not working
Since installing beta 3 my iPhone X’s GPS is now working probably. For Apple Maps as well as Google Maps and Waze. Let’s hope it stays this way.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’18
Map links/multiple points
I have a web page that I need to display multiple points on a map, and want to use the native app on the device if possible. I've read through:https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.htmlHowever, I don't see anyway to add multiple points, is there a way to do this? Just making sure I didn't miss something.Thanks
Replies
0
Boosts
0
Views
142
Activity
May ’16
Reply to How to launch Google Maps or Apple Maps from an iOS app with Swift
Hello Marchymanthx for your reply. What i mean is like this:http://www.reigndesign.com/blog/how-to-launch-google-maps-or-apple-maps-from-an-ios-app/Only this is written in ObjectC. I have an app with markers and i can't figered out how to setup directions with GoogleMaps SDK for ios. So i want to give the users an option to choose between googemaps en apple maps to get directions from the current location to de selected marker.thxx
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’15
Tap on maps to get coordinates
Hey guys, I recently started using Swiftui and would like to make a small app for my dad to use as a travel journal as my first project. He can create trips and then create multiple steps in a trip. When creating a step he should be able to set a location. Finding the location from the user is no problem. But now I also want to have the function to tap on the map and set a pin at a random location to get the coordinates (like google maps for example). Unfortunately I can't figure out from the documentation if there is a simple way to do this. import SwiftUI import MapKit struct StepLocationView: View { @EnvironmentObject var locationManagement: LocationDataManager @State private var position: MapCameraPosition = .automatic var body: some View { VStack { Map(position: $position) { UserAnnotation() } .navigationTitle(Search your location) .navigationBarTitleDisplayMode(.inline) .toolbarBackground(.visible, for: .navigationBar) .toolbarBackground(.ultraThinMaterial, for: .navigationBar
Replies
3
Boosts
0
Views
3.9k
Activity
Jul ’23
Step-by-step guide for SecKeyCreateWithData from OpenSSL PEM?
A quick search for SecKeyCreateWithData reveals that it isn't the most straight-forward API to use for many Developers' use-cases ...https://forums.developer.apple.com/thread/102621https://forums.developer.apple.com/thread/72445It seems reasonable that Developers who wish to use ECDSA for any sort of server <==> iOS communication discrete data exchange should be able to simply:1. Fire up Terminal2. Create Private + Public ECDSA keys:# Generate an ECDSA Private key. openssl ecparam -genkey -name prime256v1 -out ec256-private.pem # Generate an ECDSA Public key. openssl ec -in ec256-private.pem -pubout -out ec256-public.pem3. <-- Follow some steps to use the Base64 .pem to create keys in iOS -->4. Use SecKeyCreateWithData, ex:let publicKey = SecKeyCreateWithData(pemData as CFData ...)@eskimo -- might you consider creating a step-by-step tutorial as to your / Apple's best recommendation on how to accomplish this?Your responsiveness on the forums is excellent, so thank you. It just seems that
Replies
4
Boosts
0
Views
5.2k
Activity
May ’18
Reply to Is it possible to contact all users of an app (in exceptional circumstances only)?
I strongly suggest you consider adding support for Apple Maps, even if only as a fallback. Apple Maps is free and you can reasonably assume it will always be available. But any 3rd party service is going to be contingent on their service being active and your account being in good standing.
Replies
Boosts
Views
Activity
Jan ’18
Safari App Extension Programming Guide missing
The document Safari App Extension Programming Guide appears to be missing. The URL https://developer.apple.com/library/content/documentation/NetworkingInternetWeb/Conceptual/SafariAppExtension_PG/ redirects to the SafariServices framework reference. The document was there a few weeks ago, and it was essential for creating my Safari app extension. Is this just a web site bug? Can the document be restored?
Replies
2
Boosts
0
Views
1.2k
Activity
May ’18