Search results for

“Apple Maps Guides”

163,038 results found

Post

Replies

Boosts

Views

Activity

Apple Maps Not Calling handlerForIntent for INListCarsIntent
Hi, I've done everything required to implement this intent, but when I run either in the simulator or on the device the handlerForIntent does not get called when Maps runs and I click on my Profile icon to try and get the 'Vehicles' option to show up. I know handlerForIntent is working because it's getting called for my custom event for Siri shortcuts. I've added INListCarsIntent to the IntentsSupported list in my extension's info.plist file. I've also included the protocol in my INExtension subclass and added the relevant functions for returning the vehicle list. I've also made the call for Siri authorization, which is returning Authorized. I'm really at a loss to know why Maps isn't calling out this intent. I'm on iOS16 and XCode 14. Thanks
2
0
1.2k
Sep ’22
Documentation of parameters to enable Apple Maps EV routing
Hi, I'm building an aftermarket solution to enable Apple Maps to support EV routing for any EV. I am going through the documentation and found some gaps - does anyone know how the following properties work? INGetCarPowerLevelStatusIntentResponse - consumptionFormulaArguments INGetCarPowerLevelStatusIntentResponse - chargingFormulaArguments Is there a working example that anyone has seen? Many thanks
2
0
589
Jan ’25
Need starting guide
Hello I am a newbie developer in apple ecosystem. I am building an application for my master's dissertation. I have now learnt the Swift, SwiftUI and read more about the Apple ResearchKit. Can you please provide me some sort of starting guide which can help me.
1
0
782
Jul ’22
How to open Apple Maps focusing on the services tab ? (URL scheme)
Hi,As explained into this StackOverFlow topic (https://stackoverflow.com/questions/54888856/how-to-open-apple-maps-focusing-on-the-services-tab-url-scheme), I would like to open Apple Maps from my application by using an universal link and to focus the user's view directly on the services tab.After doing a few searches, I thought there was no way to do so and the response I got on StackOverFlow confirmed that.Is it planned to allow the developer to do such thing in the future ? Is there a link I could ask such feature to Apple developers ?I thank you in advance for your time and your response !Best regards,
2
0
674
Feb ’19
Why does apple stereo cameras depth map have a constant error
According to WWDC event 2017 (19 min), apple stereo camera can only output relative depth map due to the constant changing baseline (the lens of iPhones are moving to offset shaky hands). It also mentioned that our depth map would have a constant amount of error throughout the entire picture. I just can't figure out why it is true.According to the formula in the earlier slides (12 min), the inverse of depth = disparity /(focal length * baseline)1/z = d/(fl * b)The focal length (fl) and the inaccurate baseline (b) are constant in one picture.1/z = (inaccurate constant) * disparity.How come this would result in a constant amount of error in the depth map for the whole picture? Shouldn't it differ in proportion to disparity changes?# disparity in point a is d, disparity in point b is d+deltaD 1/za = (inaccurate constant) * d 1/zb = (inaccurate constatn) * (d+deltaD) changeInNormalizedDisparity = 1/zb - 1/za = (inaccurate constant) * deltaD # inverse of depth is porportional to
0
0
1.2k
Sep ’19
Missing Symbol after following Apple TF-Metal Guide
I am attempting to run an app using Tensorflow on the M1 platform. I created my new conda environment, activated it, installed my other dependencies, and followed this guide from Apple: https://developer.apple.com/metal/tensorflow-plugin/ installing the tensorflow-metal frameworks at the end as specified. Then, I ran my python code, and crashed on from keras.models import load_model with Symbol not found: OBJC_CLASS$_MPSGraphCompilationDescriptor referenced from libmetal_plugin.dylib expected in MetalPerformanceShadersGraph Any ideas what I am doing wrong? I am running on an M1 Mac mini running macOS 11.6.1. Thank you.
2
0
735
Dec ’21
Lost guide for Xcode
HI guys!I was going through one of the app developer guides for XCode and some days ago, said guide disappeared. This kind of unfortunate for me because I am not the best at coding and this guide was more visual and practical than code oriented.This was the address:https://developer.apple.com/library/ios/referencelibrary/GettingStarted/RoadMapiOS/index.html#//apple_ref/doc/uid/TP40011343-CH2-SW1I have spent days looking for it everywhere and couldn't find the guide. I'll be very thankfull with any help.Thanks!!
1
0
522
Sep ’15
Reply to iOS 13 MKMapView Apple logo - MKAppleLogoImageView, change position
Back when Apple Maps first came out, the suggestion was that you could use AutoLayout page guides to move the credits. If your UI is obscuring the attribution label, then you MUST fix that or else be in violation of the developer agreement.Here is a thread that discussed some ideas on using safe inset values to move the label: https://forums.developer.apple.com/thread/88631However, it might be easier to adjust your own UI elements.
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’19
Apple Maps Not Calling handlerForIntent for INListCarsIntent
Hi, I've done everything required to implement this intent, but when I run either in the simulator or on the device the handlerForIntent does not get called when Maps runs and I click on my Profile icon to try and get the 'Vehicles' option to show up. I know handlerForIntent is working because it's getting called for my custom event for Siri shortcuts. I've added INListCarsIntent to the IntentsSupported list in my extension's info.plist file. I've also included the protocol in my INExtension subclass and added the relevant functions for returning the vehicle list. I've also made the call for Siri authorization, which is returning Authorized. I'm really at a loss to know why Maps isn't calling out this intent. I'm on iOS16 and XCode 14. Thanks
Replies
2
Boosts
0
Views
1.2k
Activity
Sep ’22
Documentation of parameters to enable Apple Maps EV routing
Hi, I'm building an aftermarket solution to enable Apple Maps to support EV routing for any EV. I am going through the documentation and found some gaps - does anyone know how the following properties work? INGetCarPowerLevelStatusIntentResponse - consumptionFormulaArguments INGetCarPowerLevelStatusIntentResponse - chargingFormulaArguments Is there a working example that anyone has seen? Many thanks
Replies
2
Boosts
0
Views
589
Activity
Jan ’25
Need starting guide
Hello I am a newbie developer in apple ecosystem. I am building an application for my master's dissertation. I have now learnt the Swift, SwiftUI and read more about the Apple ResearchKit. Can you please provide me some sort of starting guide which can help me.
Replies
1
Boosts
0
Views
782
Activity
Jul ’22
Reply to 10.11 GM is out...Sept 30th release date
Having issues here as well that I never had. Can't create a usb drive with createinstallermedia and simply double clicking the installer it restarts and then says I have a mismatch between the MBR and GUID partition maps is not supported with this operation.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15
How to open Apple Maps focusing on the services tab ? (URL scheme)
Hi,As explained into this StackOverFlow topic (https://stackoverflow.com/questions/54888856/how-to-open-apple-maps-focusing-on-the-services-tab-url-scheme), I would like to open Apple Maps from my application by using an universal link and to focus the user's view directly on the services tab.After doing a few searches, I thought there was no way to do so and the response I got on StackOverFlow confirmed that.Is it planned to allow the developer to do such thing in the future ? Is there a link I could ask such feature to Apple developers ?I thank you in advance for your time and your response !Best regards,
Replies
2
Boosts
0
Views
674
Activity
Feb ’19
Why does apple stereo cameras depth map have a constant error
According to WWDC event 2017 (19 min), apple stereo camera can only output relative depth map due to the constant changing baseline (the lens of iPhones are moving to offset shaky hands). It also mentioned that our depth map would have a constant amount of error throughout the entire picture. I just can't figure out why it is true.According to the formula in the earlier slides (12 min), the inverse of depth = disparity /(focal length * baseline)1/z = d/(fl * b)The focal length (fl) and the inaccurate baseline (b) are constant in one picture.1/z = (inaccurate constant) * disparity.How come this would result in a constant amount of error in the depth map for the whole picture? Shouldn't it differ in proportion to disparity changes?# disparity in point a is d, disparity in point b is d+deltaD 1/za = (inaccurate constant) * d 1/zb = (inaccurate constatn) * (d+deltaD) changeInNormalizedDisparity = 1/zb - 1/za = (inaccurate constant) * deltaD # inverse of depth is porportional to
Replies
0
Boosts
0
Views
1.2k
Activity
Sep ’19
Is there any license cost on using apple map in internal company app?
Hi,Just want to know does it involve any cost on using apple map on the app for my company internal use. Thanks.
Replies
1
Boosts
0
Views
475
Activity
Jul ’17
Any license cost on using apple map in my newly develop app
Hi,Just want to know does it involve any cost on using apple map on the app for my company internal use. Thanks.
Replies
0
Boosts
0
Views
385
Activity
Oct ’16
Map
I am currently trying to make a map. However, it says that the 'view' is not in scope. What does this mean and how can I fix this?
Replies
1
Boosts
0
Views
725
Activity
Feb ’22
Reply to stuck on verifying screen/ Package Dependencies
I am also having this issue with Xcode 13.4.1 trying to import the Mapbox package (instructions here: https://docs.mapbox.com/ios/maps/guides/install/ ) from their Github repo. I have deleted and reinstalled Xcode, but it still hangs at Preparing to validate....
Replies
Boosts
Views
Activity
Jun ’22
Missing Symbol after following Apple TF-Metal Guide
I am attempting to run an app using Tensorflow on the M1 platform. I created my new conda environment, activated it, installed my other dependencies, and followed this guide from Apple: https://developer.apple.com/metal/tensorflow-plugin/ installing the tensorflow-metal frameworks at the end as specified. Then, I ran my python code, and crashed on from keras.models import load_model with Symbol not found: OBJC_CLASS$_MPSGraphCompilationDescriptor referenced from libmetal_plugin.dylib expected in MetalPerformanceShadersGraph Any ideas what I am doing wrong? I am running on an M1 Mac mini running macOS 11.6.1. Thank you.
Replies
2
Boosts
0
Views
735
Activity
Dec ’21
Apple Maps crashing on launch in macOS 10.13.3 Beta (17D46a)
I'm running 10.13.3 Beta (17D46a) and the Apple Maps app is crashing on launch. It doesn't run at all. Anyone else seeing this?
Replies
0
Boosts
0
Views
461
Activity
Jan ’18
14.5 guide access problem
Hai apple , please fix the 14.5 version beta guide access .
Replies
0
Boosts
0
Views
290
Activity
Feb ’21
Lost guide for Xcode
HI guys!I was going through one of the app developer guides for XCode and some days ago, said guide disappeared. This kind of unfortunate for me because I am not the best at coding and this guide was more visual and practical than code oriented.This was the address:https://developer.apple.com/library/ios/referencelibrary/GettingStarted/RoadMapiOS/index.html#//apple_ref/doc/uid/TP40011343-CH2-SW1I have spent days looking for it everywhere and couldn't find the guide. I'll be very thankfull with any help.Thanks!!
Replies
1
Boosts
0
Views
522
Activity
Sep ’15
Reply to iOS 13 MKMapView Apple logo - MKAppleLogoImageView, change position
Back when Apple Maps first came out, the suggestion was that you could use AutoLayout page guides to move the credits. If your UI is obscuring the attribution label, then you MUST fix that or else be in violation of the developer agreement.Here is a thread that discussed some ideas on using safe inset values to move the label: https://forums.developer.apple.com/thread/88631However, it might be easier to adjust your own UI elements.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’19