Search results for

Apple Maps Guides

154,021 results found

Post

Replies

Boosts

Views

Activity

Depth Map is inverted?
The depth map (actually disparity map) I'm extracting from a picture taken with iPhone Plus is inverted. That is: objects that are close to lens are dark/black (low values), and in the distance they're white (high values).That seems to me to be the opposite of what Apple showed on WWDC. Is that normal? I'm able to get it right (close: high values, distance: low values) by simply inverting the whole depth map, but is it supposed to be like that?I've tested with 2 different pictures and both of them had the same result. I haven't got an iPhone Plus at hand to test it more, appreciate any help.
7
0
2.3k
Jul ’17
Step-by-Step Guide Needed for NFC Activation in Apple Wallet Pass
Hi everyone, I am working on creating an NFC-enabled Apple Wallet pass but have been unable to get the NFC functionality to work. While the pass itself adds to Wallet without issues, the NFC feature does not activate. Here’s a summary of what I’ve done: 1. Developer Setup: Registered a Pass Type ID in my Apple Developer account. Generated and installed the Pass Type ID certificate. Installed the latest WWDR certificate. 2. Pass JSON Configuration: My pass.json file includes the following NFC configuration: nfc: { message: Tap to unlock door, encryptionPublicKey: MY_ENCRYPTION_PUBLIC_KEY, payload: encrypted_nfc_payload } 3. Testing Results: When the pass includes the nfc field, it adds to Wallet but NFC does not work. If I remove the nfc field, the pass works fine (minus NFC, of course). What I Need Help With: 1. A step-by-step guide for correctly implementing NFC in Wallet passes, including details about encryption, key generation, and any additional setup steps. 2. Information on w
1
0
859
Dec ’24
Deployment server guide
Hi, Until now, deploying code to production in XCode was done locally in each developer MacBook. As deployment takes a long time and it basically makes the device unusable during this time, we are looking for ways to deploy code via some sort of deployment server. As we are fairly new to XCode deployments, I was wondering if there is a method/guide to install a deployment server. Thanks!
1
0
1.6k
Oct ’22
SwiftUI Map Annotations
Hello there, i've came here after searching por a while a solution to the problem i have but i couldn't find anything helpfull. I'm displaying a map in iOS16 using only swiftUI and i'm wondering if its any way to know if the region of the map it's displaying has any annotations or not. I want to display a list in the bottom of the map of annotations that are visible in that map area, but if the user drag to another position without annotations i want to hide that list.
1
0
2.4k
Sep ’23
Map over UITableViewController
I have a standard UITableViewController and I have added an MKMapKit map neatly on the top half of the screen (and the table in the bottom half). During runtime, if we scroll through the table records, the map scrolls up as well. What I wanted to do was have the map static, not scrolling, while I scroll the table. Any ideas on how to accomplish this, please?
4
0
873
May ’22
Trees on the in-app map?
Hi, this is a series of questions for the Apple developers, and also for anyone that would like to speculate. How are they able to get trees marked on the in-app map? And how come they are fairly but not completely accurately marked?
1
0
136
Dec ’25
Subtitle on Map?
I am using the following code on my map but the subtitle does not show on the map and I am getting this message - for 0.00 seconds - Raster Overlays Above Labels - Failed to decode (terminal) (0.00 sec). Does anyone see a problem with my logic or code? self.mapView.removeOverlays(self.mapView.overlays) let location = sender.location(in: self.mapView) let locCoord = self.mapView.convert(location, toCoordinateFrom: self.mapView) let annotation = MKPointAnnotation() annotation.coordinate = locCoord self.mapView.removeAnnotations(mapView.annotations) self.mapView.addAnnotation(annotation) addCircle(locCoord: locCoord) annotation.title = Bank Angle (angle)° annotation.subtitle = Aircraft } // MARK: Circle overlay. func addCircle(locCoord: CLLocationCoordinate2D) { self.mapView.delegate = self let circle = MKCircle(center: locCoord, radius: distanceInMeters as CLLocationDistance) self.mapView.add(circle) }
1
0
848
Jun ’18
SwiftUI Map shows through toolbar.
Hi, On iOS 17 beta I have drawn a Map inside a NavigationStack with toolbar buttons. The map is drawing itself above the toolbar background and behind the toolbar buttons, that is the map is drawing right to the bottom of the display but the buttons are visible on top of the map. The Apple Maps logo etc has honoured the safe area correctly. Anyone seen this and know why or how to avoid this? If I replace the map with another view the toolbar is handled properly. Any suggestions appreciated, cheers.
1
0
858
Aug ’23
Reply to Buttons Focus
I suppose you could do this with a focus guide, but it would not map well to the way a user expects the focus engine to work. It is best to only move focus in the direction requested by the user, otherwise it becomes very unpredictable and confusing.Please see the tvOS HIG section on Focus and Selection for some additional information.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’15
Reply to Is it possible to contact all users of an app (in exceptional circumstances only)?
Thanks for the suggestion but my app is primarily an Apple Watch app and unfortunately Apple Maps is very limited on Apple Watch. It only provides a static map image, whereas I need a fully interactive vector map, similar to the Apple Maps app, but integrated into my watch app. Also my app is intended for use when hiking, mountain biking etc and Apple Maps is very poor when it comes to paths and trails. In a lot of hiking situations Apple Maps would not be showing much anyway, so my empty vector map is probably a better fallback because it at least shows the breadcrumb trail and users can load and see GPX routes to follow.Thanks though - in most situations Apple Maps would be a reasonable fallback, but probably not in this case.
Jan ’18