Search results for

“Apple Maps Guides”

159,774 results found

Post

Replies

Boosts

Views

Activity

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
382
Jan ’20
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
532
Dec ’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
0
0
381
Mar ’23
Reply to CarPlay in IOS 18
They didn’t fix it as I installed iOS 18 yesterday and it displays maps, and everything but only plays music. Can’t make a call, can’t use voice to text since it does play through speakers, map guide doesn’t go through speaker. Oh and icing on this cake even unconnected my Bluetooth is connected for music but can’t make a phone call since there’s no sound. What a terrible job Apple. In essence my mobile phone is useless as a phone to call. I’ve tried all the stupid troubleshooting I could find on the internet and it doesn’t work
Sep ’24
Maó and Sant Francesc de Formentera in Apple Maps (spanish version)
Hello, I would like to report an inconsistency in Apple Maps regarding place names in the Balearic Islands when using Apple Maps in Spanish. Most official place names in the Balearic Islands are displayed correctly. For example, Apple Maps correctly shows names such as Eivissa, and other Balearic municipalities also appear with their official names. However, there are still some incorrect cases, especially: Maó, which is still displayed incorrectly (shown as Mahón) Sant Francesc de Formentera, shown as San Francisco Javier This does not seem consistent, because Apple Maps already respects the official Catalan/Balearic place names in most other cases. Until recently, Ciutadella was also displayed incorrectly, but after months of reporting the issue, it has finally been corrected. This shows that the correction is possible and that the current remaining cases are likely data inconsistencies. Other major platforms such as Google Maps
4
0
102
5d
Any ways to get access to Apple Map's indoor navigation within airports
I'm currently playing with Apple Map's MapKit for SwiftUI, aiming to make a tool that helps me navigate inside the airport as I find out that Apple Map in my iPhone can direct me within the airport from gate to gate. I want to integrate this function into my SwiftUI application, but I believe that MapKit only gives directions between places to places, like from my home to the airport, but not directions travelling indoor in the airport. Are there any ways for me to integrate the Apple Map that supports airport's indoor navigation into my App? Thanks!
0
0
758
Jun ’23
Language guide for Swift 5.9
My Mac will not run Xcode 15.3 which uses Swift 5.10. It will run Xcode 15.2 which uses Swift 5.9.2. The problem I am seeing is that Apple provides the language guide for Swift 5.10 but not the guide for Swift 5.9. Is this a real problem or am I over reacting, if not, where can I get and how do I install the reference guide for Swift 5.9 that will show up in Xcode
3
0
1.5k
Mar ’24
Reply to Totalization of array values
There is the built in reduce function for this :let sum = arrayPoint.reduce(0, combine: +)You start with 0 (or any other value you want) and add all items in array.If you want the product :prod = arrayPoint.reduce(1,combine: *) // Here, need to start with 1You have other interesting functions on collections (map, filter, reduce); look hereh ttps://useyourloaf.com/blog/swift-guide-to-map-filter-reduce/
Topic: Programming Languages SubTopic: Swift Tags:
May ’17
App not showing up in Apple Map's share location menu
I'm making an app that can have locations and links shared to it. I have gotten the share intent working for text and urls with: NSExtensionActivationSupportsWebURLWithMaxCount: 1 NSExtensionActivationSupportsWebPageWithMaxCount: 1 NSExtensionActivationSupportsText: true in Info.plist of the share extension. I am able to share Google Maps locations and safari websites. However, my app does not appear when I share a location on Apple Maps. I also tried the other options in the docs (https://developer.apple.com/documentation/bundleresources/information-property-list/nsextension/nsextensionattributes/nsextensionactivationrule) as well without success. When I share a location (i.e. a shop) in Apple Maps, it looks like a link but perhaps its something else? Does anyone know how to get an app to come up in the share menu of an Apple Maps location? Thanks!
0
0
114
Jul ’25
How to get blur effect similar to Apple maps status bar?
I'm working on a map based iOS 11 application and want to make the status bar blurred exactly like it appears in the Apple maps.Currently, I'm using UIVisualEffectView to replicate this effect. Here's my code:let blurEffect = UIBlurEffect(style: .regular) blurredStatusBar = UIVisualEffectView(effect: blurEffect) blurredStatusBar?.translatesAutoresizingMaskIntoConstraints = false view.addSubview(blurredStatusBar!)However, whatever UIBlurEffect I use, I'm not able to replicate the effect like Maps app.I just want to the blur the status bar, without adding any saturation, vibrancy or any white color tint.There is an instance property - backgroundFilters, which, possibly could have helped me but unfortunately it is not available for layers on iOS.One possible solution suggested here was to capture the UIView content inside an image, then blurring and showing it. However, this is not a feasible solution in my case because I've got a map underneath the status bar which can be pan
0
0
2.3k
Aug ’18
Japanese localization style guide
Are there any official iOS localization style guides specifically for Japanese?I've pointed out to my L10n team that spaces should not be inserted before or after an English word, and they replied with the following:Please refer to “3.1.14 Symbols & spaces” section in the attached PDF. It’s Microsoft’s Japanese localization Style Guide which you can download from here. Not sure if we have company_name version of Japanese style guide but this is comprehensive. As a software distributor for Windows platform, it’s understandable that we follow this guideline. I think it makes sense to use the same style guide for company_brand products across OS platforms, unless there’s OS specific style definition.oh my god. how can they default to a Microsoft localization style guide for localizing an iOS app?I've also pointed out to them that Apple's apps like Settings do not add spaces, but without an official Apple documentation the L10n team doesn't want t
4
0
4.5k
Oct ’18
Tier Guide line?
I'm launching game app.but rejected twice.ReasonYour game app includes in-app purchase products for consumable credits priced over $99.99, Tier 60.I aksed this reason to Apple, againwhy not? I want selling $99.99 over that in-appBut same reply got it...I have not seen that guideline.Where is that InApp Price guide line?
4
0
2k
Jul ’18
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
382
Activity
Jan ’20
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
532
Activity
Dec ’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
381
Activity
Mar ’23
Reply to CarPlay in IOS 18
They didn’t fix it as I installed iOS 18 yesterday and it displays maps, and everything but only plays music. Can’t make a call, can’t use voice to text since it does play through speakers, map guide doesn’t go through speaker. Oh and icing on this cake even unconnected my Bluetooth is connected for music but can’t make a phone call since there’s no sound. What a terrible job Apple. In essence my mobile phone is useless as a phone to call. I’ve tried all the stupid troubleshooting I could find on the internet and it doesn’t work
Replies
Boosts
Views
Activity
Sep ’24
Beginners Guide to Apple Machine Learning?
There are some projects I'd like to try with Create ML but I've never worked with machine learning before. Are there any good sources for beginners?
Replies
4
Boosts
0
Views
3.1k
Activity
May ’20
Maó and Sant Francesc de Formentera in Apple Maps (spanish version)
Hello, I would like to report an inconsistency in Apple Maps regarding place names in the Balearic Islands when using Apple Maps in Spanish. Most official place names in the Balearic Islands are displayed correctly. For example, Apple Maps correctly shows names such as Eivissa, and other Balearic municipalities also appear with their official names. However, there are still some incorrect cases, especially: Maó, which is still displayed incorrectly (shown as Mahón) Sant Francesc de Formentera, shown as San Francisco Javier This does not seem consistent, because Apple Maps already respects the official Catalan/Balearic place names in most other cases. Until recently, Ciutadella was also displayed incorrectly, but after months of reporting the issue, it has finally been corrected. This shows that the correction is possible and that the current remaining cases are likely data inconsistencies. Other major platforms such as Google Maps
Replies
4
Boosts
0
Views
102
Activity
5d
Any ways to get access to Apple Map's indoor navigation within airports
I'm currently playing with Apple Map's MapKit for SwiftUI, aiming to make a tool that helps me navigate inside the airport as I find out that Apple Map in my iPhone can direct me within the airport from gate to gate. I want to integrate this function into my SwiftUI application, but I believe that MapKit only gives directions between places to places, like from my home to the airport, but not directions travelling indoor in the airport. Are there any ways for me to integrate the Apple Map that supports airport's indoor navigation into my App? Thanks!
Replies
0
Boosts
0
Views
758
Activity
Jun ’23
Language guide for Swift 5.9
My Mac will not run Xcode 15.3 which uses Swift 5.10. It will run Xcode 15.2 which uses Swift 5.9.2. The problem I am seeing is that Apple provides the language guide for Swift 5.10 but not the guide for Swift 5.9. Is this a real problem or am I over reacting, if not, where can I get and how do I install the reference guide for Swift 5.9 that will show up in Xcode
Replies
3
Boosts
0
Views
1.5k
Activity
Mar ’24
Reply to Totalization of array values
There is the built in reduce function for this :let sum = arrayPoint.reduce(0, combine: +)You start with 0 (or any other value you want) and add all items in array.If you want the product :prod = arrayPoint.reduce(1,combine: *) // Here, need to start with 1You have other interesting functions on collections (map, filter, reduce); look hereh ttps://useyourloaf.com/blog/swift-guide-to-map-filter-reduce/
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’17
App not showing up in Apple Map's share location menu
I'm making an app that can have locations and links shared to it. I have gotten the share intent working for text and urls with: NSExtensionActivationSupportsWebURLWithMaxCount: 1 NSExtensionActivationSupportsWebPageWithMaxCount: 1 NSExtensionActivationSupportsText: true in Info.plist of the share extension. I am able to share Google Maps locations and safari websites. However, my app does not appear when I share a location on Apple Maps. I also tried the other options in the docs (https://developer.apple.com/documentation/bundleresources/information-property-list/nsextension/nsextensionattributes/nsextensionactivationrule) as well without success. When I share a location (i.e. a shop) in Apple Maps, it looks like a link but perhaps its something else? Does anyone know how to get an app to come up in the share menu of an Apple Maps location? Thanks!
Replies
0
Boosts
0
Views
114
Activity
Jul ’25
How to get blur effect similar to Apple maps status bar?
I'm working on a map based iOS 11 application and want to make the status bar blurred exactly like it appears in the Apple maps.Currently, I'm using UIVisualEffectView to replicate this effect. Here's my code:let blurEffect = UIBlurEffect(style: .regular) blurredStatusBar = UIVisualEffectView(effect: blurEffect) blurredStatusBar?.translatesAutoresizingMaskIntoConstraints = false view.addSubview(blurredStatusBar!)However, whatever UIBlurEffect I use, I'm not able to replicate the effect like Maps app.I just want to the blur the status bar, without adding any saturation, vibrancy or any white color tint.There is an instance property - backgroundFilters, which, possibly could have helped me but unfortunately it is not available for layers on iOS.One possible solution suggested here was to capture the UIView content inside an image, then blurring and showing it. However, this is not a feasible solution in my case because I've got a map underneath the status bar which can be pan
Replies
0
Boosts
0
Views
2.3k
Activity
Aug ’18
Apple Maps freezes since since updated to iOS 16.1 ?
Anybody else seeing the map freeze in their App since upgrading to iOS 16.1 ? Like the app totally freezes, not just the map even.
Replies
3
Boosts
0
Views
1.5k
Activity
Oct ’22
Japanese localization style guide
Are there any official iOS localization style guides specifically for Japanese?I've pointed out to my L10n team that spaces should not be inserted before or after an English word, and they replied with the following:Please refer to “3.1.14 Symbols & spaces” section in the attached PDF. It’s Microsoft’s Japanese localization Style Guide which you can download from here. Not sure if we have company_name version of Japanese style guide but this is comprehensive. As a software distributor for Windows platform, it’s understandable that we follow this guideline. I think it makes sense to use the same style guide for company_brand products across OS platforms, unless there’s OS specific style definition.oh my god. how can they default to a Microsoft localization style guide for localizing an iOS app?I've also pointed out to them that Apple's apps like Settings do not add spaces, but without an official Apple documentation the L10n team doesn't want t
Replies
4
Boosts
0
Views
4.5k
Activity
Oct ’18
Move the "Maps" and "Legal" text in Map View
Does anyone know if there is a way to move the Maps and Legal text in the Map SwiftUI view? App Store Guidelines require that the text be shown, but if you are trying to add some type of sheet or view overlay for some of the map, I can't seem to find a way to add extra bottom padding to this text.
Replies
2
Boosts
0
Views
3.3k
Activity
Jun ’20
Tier Guide line?
I'm launching game app.but rejected twice.ReasonYour game app includes in-app purchase products for consumable credits priced over $99.99, Tier 60.I aksed this reason to Apple, againwhy not? I want selling $99.99 over that in-appBut same reply got it...I have not seen that guideline.Where is that InApp Price guide line?
Replies
4
Boosts
0
Views
2k
Activity
Jul ’18