Search results for

“Apple Maps Guides”

155,796 results found

Post

Replies

Boosts

Views

Activity

In Predicate Programming Guide
In Predicate Programming Guide, please refer https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Predicates/Articles/pUsing.html. Here, NSPredicate *sPredicate = [NSPredicate predicateWithFormat:@SELF contains[c] 'e']; [array filterUsingPredicate:sPredicate]; // array now contains { @Nick, @Ben, @Melissa }. The output is wrong here. It must be // array now contains { @Ben, @Melissa }
1
0
258
Sep ’15
There is a mapping issue between the physical buttons of the Matter switch and the buttons on the Apple Home App.
My device is a Matter switch with 12 buttons, but its physical buttons do not correspond to the button icons displayed in the Apple Home App. The mapping between them is chaotic, for example, physical button 1 is mapped to button icon 3, and physical button 2 is mapped to button icon 7, without any pattern. And every time the factory settings are restored and the network is reconfigured, the mapping will be different from the last time, and restoring the factory settings will change it again. I have checked my program and I am certain that the events triggered by physical buttons correspond correctly to the Matter Generic Switch Endpoint in the ZCL file. I don't understand why there was such a mistake. I am using GSDK 4.4.1, Silicon Labs Matter 2.2.1-1.2. I asked the manufacturer of the chip (the staff of Silicon Labs), and they said that the corresponding order displayed on the app is determined by the APP side, and has nothing to do with Matter devices, is this a
2
0
553
Jan ’25
Apple maps with wrong business name
Does anyone know why the business name for this business is coming up as Specialist Orthodontist Berwick? The business name is actually SE Orthodontics. It is a concern for us as our own business down the road is called Berwick Orthodontic Specialists. Our patients are getting confused, calling the wrong business trying to change their appointment.
1
0
1.3k
Jun ’22
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
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
870
Dec ’24
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.4k
Jul ’17
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
Reply to MKMapView doesn't show updated map data
Let's look at this... Apple Maps shows a certain view. When using MKMapView, your app shows the same view. That seems entirely consistent. Google Maps shows a different view. Okay. Google Maps is an entirely different system, nothing to do with Apple Maps, or MKMapView. If you want to use Google Maps data in your app, you can do that (but not in MKMapView... they use a GMSMapView). Another app shows a different view. You think it is using Apple Maps (you spotted an Apple logo). You think it is using MKMapView (how would you know that?). Who knows what it is doing, or using? You would have to ask the app developer. Your app is consistent with Apple Maps. When your local Apple Maps data is updated, your MKMapView will reflect that.
Topic: Programming Languages SubTopic: Swift Tags:
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
884
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
149
Dec ’25
In Predicate Programming Guide
In Predicate Programming Guide, please refer https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Predicates/Articles/pUsing.html. Here, NSPredicate *sPredicate = [NSPredicate predicateWithFormat:@SELF contains[c] 'e']; [array filterUsingPredicate:sPredicate]; // array now contains { @Nick, @Ben, @Melissa }. The output is wrong here. It must be // array now contains { @Ben, @Melissa }
Replies
1
Boosts
0
Views
258
Activity
Sep ’15
There is a mapping issue between the physical buttons of the Matter switch and the buttons on the Apple Home App.
My device is a Matter switch with 12 buttons, but its physical buttons do not correspond to the button icons displayed in the Apple Home App. The mapping between them is chaotic, for example, physical button 1 is mapped to button icon 3, and physical button 2 is mapped to button icon 7, without any pattern. And every time the factory settings are restored and the network is reconfigured, the mapping will be different from the last time, and restoring the factory settings will change it again. I have checked my program and I am certain that the events triggered by physical buttons correspond correctly to the Matter Generic Switch Endpoint in the ZCL file. I don't understand why there was such a mistake. I am using GSDK 4.4.1, Silicon Labs Matter 2.2.1-1.2. I asked the manufacturer of the chip (the staff of Silicon Labs), and they said that the corresponding order displayed on the app is determined by the APP side, and has nothing to do with Matter devices, is this a
Replies
2
Boosts
0
Views
553
Activity
Jan ’25
Apple maps with wrong business name
Does anyone know why the business name for this business is coming up as Specialist Orthodontist Berwick? The business name is actually SE Orthodontics. It is a concern for us as our own business down the road is called Berwick Orthodontic Specialists. Our patients are getting confused, calling the wrong business trying to change their appointment.
Replies
1
Boosts
0
Views
1.3k
Activity
Jun ’22
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!
Replies
1
Boosts
0
Views
1.6k
Activity
Oct ’22
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
Replies
1
Boosts
0
Views
870
Activity
Dec ’24
Using maps in osx app.
Is there a way to add google maps or mapbox to osx app built with swift? Both websites only show api for ios. Is there any option to add maps to osx app without using apple maps?
Replies
3
Boosts
0
Views
249
Activity
Sep ’15
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.
Replies
7
Boosts
0
Views
2.4k
Activity
Jul ’17
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.
Replies
Boosts
Views
Activity
Jan ’18
Reply to MKMapView doesn't show updated map data
Let's look at this... Apple Maps shows a certain view. When using MKMapView, your app shows the same view. That seems entirely consistent. Google Maps shows a different view. Okay. Google Maps is an entirely different system, nothing to do with Apple Maps, or MKMapView. If you want to use Google Maps data in your app, you can do that (but not in MKMapView... they use a GMSMapView). Another app shows a different view. You think it is using Apple Maps (you spotted an Apple logo). You think it is using MKMapView (how would you know that?). Who knows what it is doing, or using? You would have to ask the app developer. Your app is consistent with Apple Maps. When your local Apple Maps data is updated, your MKMapView will reflect that.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
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.
Replies
1
Boosts
0
Views
2.4k
Activity
Sep ’23
Reply to How to add a circle with a desired radius around an MKPointAnnotation?
See Steps for Adding an Overlay to the Map in the guide OOPer mentioned. You already have finished steps 1 and 4.For steps 2 and 3, you need to implement the mapView(_:rendererFor:) delegate method and return a MKCircleRenderer. The renderer allows you to set the fill color, stroke color, etc.
Replies
Boosts
Views
Activity
Oct ’17
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?
Replies
4
Boosts
0
Views
884
Activity
May ’22
Maps issues
Since updating to iOS 11 and High Sierra, Maps favorites, bookmarks and history will not sync across my devices. Is anyone else experiencing this?
Replies
2
Boosts
0
Views
615
Activity
Jun ’17
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?
Replies
1
Boosts
0
Views
149
Activity
Dec ’25
3d Map Dallas
When are we going to see an update to 3D maps. The Dallas Texas map is 5 yrs old?
Replies
0
Boosts
0
Views
913
Activity
Jul ’20