Search results for

“Apple Maps Guides”

155,788 results found

Post

Replies

Boosts

Views

Activity

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
668
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
715
Dec ’21
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
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
512
Sep ’15
Mapping an Environment
Hello,Im new to ARKIt and apple APP development in general.I want to know how to check if the entire map of the environment has been mapped and the camera has returned to its origianl position. I rememeber seeing the cloud map they displayed in their keynote when they said they were looking to debug it, but i have no clue how to do that.I know this might seem confusing, therefore please don't hesitate to ask any further questions for clarification.Thank you,
0
0
375
Jan ’20
Relocalization of World Map
Hello, I am are currently working on an application that involves saving and loading ARWorldMap data, and we have been following the guide (Saving and Loading World Data). However, we have been experiencing some difficulties with the worldMap detection when trying to relocalize the new world map. Despite visiting the same areas of the local environment as in the previous session, sometimes the worldMap detection is not able to relocalize the new world map. We have found that significant changes in the environment or lighting conditions can negatively impact the relocalization process. I am wondering whether the new worldMap object contains the union of the previous and current maps if the relocalization is successful. This would be helpful for us to understand as we explore ways to improve the world detection. Additionally, I am considering training the world map to incorporate different lighting conditions as a potential solution to the issue we are facing. If any
0
0
373
Mar ’23
Annotate markpin on map using mapkit map
Hi I am trying to annotate on map after displaying the map. I am able to take in lat and long from user and convert it to Double. But stuck at the annotate on the map part. I am able to annotate hard coded values but I do not know how to convert it to annotate using user`s input of lat and long. I struggling to include the init( ...) part into my identifiable portion. I cant seem to get it right. I found this link from apple but it doesnt work. https://developer.apple.com/documentation/mapkit/mapmarker#see-also import MapKit import SwiftUI struct IdentifiablePlace: Identifiable { let id: UUID let location: CLLocationCoordinate2D init(id: UUID = UUID(), lat: Double, long: Double) { self.id = id self.location = CLLocationCoordinate2D( latitude: lat, longitude: long) } } struct PinAnnotationMapView: View { let place: IdentifiablePlace @State var region: MKCoordinateRegion var body: some View { Map(coordinateRegion: $region, annotationItems: [place]) { place in MapMark
1
0
521
Dec ’21
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
668
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
465
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
376
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
647
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
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
451
Activity
Jan ’18
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
715
Activity
Dec ’21
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
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
512
Activity
Sep ’15
Mapping an Environment
Hello,Im new to ARKIt and apple APP development in general.I want to know how to check if the entire map of the environment has been mapped and the camera has returned to its origianl position. I rememeber seeing the cloud map they displayed in their keynote when they said they were looking to debug it, but i have no clue how to do that.I know this might seem confusing, therefore please don't hesitate to ask any further questions for clarification.Thank you,
Replies
0
Boosts
0
Views
375
Activity
Jan ’20
Apple guide implementation of TabbedView + Navigation
How may i implement a TabbedView with each tabs owning it's navigation logic within lists ?
Replies
1
Boosts
0
Views
553
Activity
Jul ’19
14.5 guide access problem
Hai apple , please fix the 14.5 version beta guide access .
Replies
0
Boosts
0
Views
277
Activity
Feb ’21
Relocalization of World Map
Hello, I am are currently working on an application that involves saving and loading ARWorldMap data, and we have been following the guide (Saving and Loading World Data). However, we have been experiencing some difficulties with the worldMap detection when trying to relocalize the new world map. Despite visiting the same areas of the local environment as in the previous session, sometimes the worldMap detection is not able to relocalize the new world map. We have found that significant changes in the environment or lighting conditions can negatively impact the relocalization process. I am wondering whether the new worldMap object contains the union of the previous and current maps if the relocalization is successful. This would be helpful for us to understand as we explore ways to improve the world detection. Additionally, I am considering training the world map to incorporate different lighting conditions as a potential solution to the issue we are facing. If any
Replies
0
Boosts
0
Views
373
Activity
Mar ’23
Annotate markpin on map using mapkit map
Hi I am trying to annotate on map after displaying the map. I am able to take in lat and long from user and convert it to Double. But stuck at the annotate on the map part. I am able to annotate hard coded values but I do not know how to convert it to annotate using user`s input of lat and long. I struggling to include the init( ...) part into my identifiable portion. I cant seem to get it right. I found this link from apple but it doesnt work. https://developer.apple.com/documentation/mapkit/mapmarker#see-also import MapKit import SwiftUI struct IdentifiablePlace: Identifiable { let id: UUID let location: CLLocationCoordinate2D init(id: UUID = UUID(), lat: Double, long: Double) { self.id = id self.location = CLLocationCoordinate2D( latitude: lat, longitude: long) } } struct PinAnnotationMapView: View { let place: IdentifiablePlace @State var region: MKCoordinateRegion var body: some View { Map(coordinateRegion: $region, annotationItems: [place]) { place in MapMark
Replies
1
Boosts
0
Views
521
Activity
Dec ’21