Search results for

“Apple Maps Guides”

163,041 results found

Post

Replies

Boosts

Views

Activity

Guide through MDM Process
I'm developing an app that has a URL blocking feature(Web Content Filter). Want to upload on the app store so any user can download the app. To do that I've to set up MDM server. I've Company / Organization account. Can anyone guide me through MDM Process? I have a few questions. What kind of account is needed? What things need to be done from the app(mobile) side? What things need to be done from the server-side? What will be the procedure to create MDM profile and distribute it to the app store user.
0
0
613
May ’22
Guide iPhone 6s + downgrade to OS10.3
HiIs there any offical safe method or guide to downgrade the iPhone 6s Plus to OS10.3?I am using cross platform tools (NOT xCode) to develop Apple apps. I try to debug the apps through Mac Mini and iPhone 6s Plus. The development enviroment has OS10.3 stable version supported.I want to downgrade to OS10.3 to debug. Is there any 'Safe & Detail' steps or offical guide to follow?Thank you for your assistance.Dko
0
0
666
Feb ’18
Explain Map() position
Hi, Can someone explain how the Map() position should work? struct ContentView: View { @State private var position: MapCameraPosition = .userLocation(followsHeading: true, fallback: .automatic) var body: some View { Map(position: $position) { UserAnnotation() } } } I was expecting the map to zoom in to users location but it shows the map zoomed out to the max instead. Location is authorized. I've also added the location button. .mapControls { MapUserLocationButton() } Pressing it zooms in to the user's location without issues. Thanks!
1
0
1.5k
Jun ’23
Map with listings aggregator possible?
Working on marketplace app where listing are displayed on map. If there are let's say 100 listings within certain radius, I want to aggregate these pins in a circle with number 100. When user clicks on this number MAP should zoom-in and display circle with say, 50, 30 ,10, pins... depending on zoom level. It is possible with google maps API. Can this be achieved with Apple MAPS ?
1
0
556
Jul ’21
google maps error
Hello!We have an ecommerce site that has a link to a location on google maps. If this is tried to open on any iphone or ipad that does not have the google maps app downloaded, an error message pops up that says Safari can not open the page because the address is invalid. The location on the map is loaded behind the message and if you press okay the message goes away but this is a bad user experience. If the user has the google maps app then this error does not occur. Has any one else encountered this problem or found a fix for it?Thanks!
0
0
1.3k
Jun ’15
showing route taken during walk or run on map.
Hi, I want user to be able to see the route he takes during walk or run on a map, while he is walking and after in history. I have got the users location and loaded a map. From what i have read, i'lll have to continuously annotate the map with a marker while the user is walking or running. But I don't clearly understand the MapKit apis for annotation and annotation view. Can someone guide me how to go about it. I just need an overview. Thanks
1
0
541
Aug ’20
Reply to Should I update to 10.15?
It would be best to install 10.15 on a properly formatted (APFS with a GUID Partition Map) external drive. You would be able to boot from it when you want to experiment with 10.15. Then you could always boot back to your internal drive (probably running Mojave) without fear of messing it up. A small SSD external drive would give you the best speed.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’19
Swiftui Map Leagal Text is transformed when rotationEffect is applied to Map
I have a problem when applying rotationEffect to a map in in SwiftUI. The legal text in the map is transformed as shown in this image: The following code is part of a much larger and complex view; it is a minimal example to reproduce the error: import SwiftUI import MapKit struct ContentView: View { @State private var offset = CGSize.zero var body: some View { ZStack { let drag = DragGesture() .onChanged { g in offset.width = g.translation.width offset.height = g.translation.height } Map(interactionModes: [.zoom]) .frame(width: 320, height: 220) .rotationEffect(.degrees(Double(offset.width / 12))) .highPriorityGesture(drag) } } } I hope you can help me with this problem.
2
0
198
Feb ’26
SwiftUI Map Annotation Clustering
I am creating an application which utilizes SwiftUI and Apple's MapKit api. The goal is to create a map with custom annotations, I have been successful in this quest however I am having issues with Map Annotation Clustering. I suppose what I'm looking to determine is if I am required to use UIKit with MKMapView in hopes to be able to create clustering map annotations or if there is a method utilizing the above aforementioned SwiftUI Map Struct along slide the MapAnnotation Struct to complete this task?
1
0
3k
Jul ’21
Maps and Location issue
If I use Maps or a program that must somehow use my location, is there any way that an app or the Apple IOS could NOT disclose my location? I need a way to find destinations, but not disclose my location. Can that be developed? Or, for whatever reason, can you say you are in a certain location when you are not? It kind of defeats the purpose, but....
0
0
316
Feb ’17
google maps error
Hello!We have an ecommerce site that has a link to a location on google maps. If this is tried to open on any iphone or ipad that does not have the google maps app downloaded, an error message pops up that says Safari can not open the page because the address is invalid. The location on the map is loaded behind the message and if you press okay the message goes away but this is a bad user experience. If the user has the google maps app then this error does not occur. Has any one else encountered this problem or found a fix for it?Thanks!
Topic: Safari & Web SubTopic: General Tags:
0
0
594
Jun ’15
Guide through MDM Process
I'm developing an app that has a URL blocking feature(Web Content Filter). Want to upload on the app store so any user can download the app. To do that I've to set up MDM server. I've Company / Organization account. Can anyone guide me through MDM Process? I have a few questions. What kind of account is needed? What things need to be done from the app(mobile) side? What things need to be done from the server-side? What will be the procedure to create MDM profile and distribute it to the app store user.
Replies
0
Boosts
0
Views
613
Activity
May ’22
Guide iPhone 6s + downgrade to OS10.3
HiIs there any offical safe method or guide to downgrade the iPhone 6s Plus to OS10.3?I am using cross platform tools (NOT xCode) to develop Apple apps. I try to debug the apps through Mac Mini and iPhone 6s Plus. The development enviroment has OS10.3 stable version supported.I want to downgrade to OS10.3 to debug. Is there any 'Safe & Detail' steps or offical guide to follow?Thank you for your assistance.Dko
Replies
0
Boosts
0
Views
666
Activity
Feb ’18
no maps showing
Trying the samples from https://developer.apple.com/maps/mapkitjs/To me only the grid appears and the markers (if the example has some), but no map, neither standard nor satelliteusing 10.14.3, trying Firefox & SafariWhat is happening ?
Replies
2
Boosts
0
Views
953
Activity
Feb ’19
Map deviation in China
Is there a solution to the map deviation problem in China? China intentionally deviates all coordinates on maps in China (for national security), so that all GPS annotations are off by a few hundred meters randomly.
Replies
2
Boosts
0
Views
1.2k
Activity
Jan ’16
Explain Map() position
Hi, Can someone explain how the Map() position should work? struct ContentView: View { @State private var position: MapCameraPosition = .userLocation(followsHeading: true, fallback: .automatic) var body: some View { Map(position: $position) { UserAnnotation() } } } I was expecting the map to zoom in to users location but it shows the map zoomed out to the max instead. Location is authorized. I've also added the location button. .mapControls { MapUserLocationButton() } Pressing it zooms in to the user's location without issues. Thanks!
Replies
1
Boosts
0
Views
1.5k
Activity
Jun ’23
Map with listings aggregator possible?
Working on marketplace app where listing are displayed on map. If there are let's say 100 listings within certain radius, I want to aggregate these pins in a circle with number 100. When user clicks on this number MAP should zoom-in and display circle with say, 50, 30 ,10, pins... depending on zoom level. It is possible with google maps API. Can this be achieved with Apple MAPS ?
Replies
1
Boosts
0
Views
556
Activity
Jul ’21
data partnership with the Maps team
Hello, We are trying to add Reservations for restaurants in apple maps, but we found out we need data partnership with the Maps team, how can we reach them to do it. Please let us know Regards
Replies
0
Boosts
0
Views
935
Activity
Nov ’22
google maps error
Hello!We have an ecommerce site that has a link to a location on google maps. If this is tried to open on any iphone or ipad that does not have the google maps app downloaded, an error message pops up that says Safari can not open the page because the address is invalid. The location on the map is loaded behind the message and if you press okay the message goes away but this is a bad user experience. If the user has the google maps app then this error does not occur. Has any one else encountered this problem or found a fix for it?Thanks!
Replies
0
Boosts
0
Views
1.3k
Activity
Jun ’15
showing route taken during walk or run on map.
Hi, I want user to be able to see the route he takes during walk or run on a map, while he is walking and after in history. I have got the users location and loaded a map. From what i have read, i'lll have to continuously annotate the map with a marker while the user is walking or running. But I don't clearly understand the MapKit apis for annotation and annotation view. Can someone guide me how to go about it. I just need an overview. Thanks
Replies
1
Boosts
0
Views
541
Activity
Aug ’20
Reply to Should I update to 10.15?
It would be best to install 10.15 on a properly formatted (APFS with a GUID Partition Map) external drive. You would be able to boot from it when you want to experiment with 10.15. Then you could always boot back to your internal drive (probably running Mojave) without fear of messing it up. A small SSD external drive would give you the best speed.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’19
Swiftui Map Leagal Text is transformed when rotationEffect is applied to Map
I have a problem when applying rotationEffect to a map in in SwiftUI. The legal text in the map is transformed as shown in this image: The following code is part of a much larger and complex view; it is a minimal example to reproduce the error: import SwiftUI import MapKit struct ContentView: View { @State private var offset = CGSize.zero var body: some View { ZStack { let drag = DragGesture() .onChanged { g in offset.width = g.translation.width offset.height = g.translation.height } Map(interactionModes: [.zoom]) .frame(width: 320, height: 220) .rotationEffect(.degrees(Double(offset.width / 12))) .highPriorityGesture(drag) } } } I hope you can help me with this problem.
Replies
2
Boosts
0
Views
198
Activity
Feb ’26
SwiftUI Map Annotation Clustering
I am creating an application which utilizes SwiftUI and Apple's MapKit api. The goal is to create a map with custom annotations, I have been successful in this quest however I am having issues with Map Annotation Clustering. I suppose what I'm looking to determine is if I am required to use UIKit with MKMapView in hopes to be able to create clustering map annotations or if there is a method utilizing the above aforementioned SwiftUI Map Struct along slide the MapAnnotation Struct to complete this task?
Replies
1
Boosts
0
Views
3k
Activity
Jul ’21
Maps and Location issue
If I use Maps or a program that must somehow use my location, is there any way that an app or the Apple IOS could NOT disclose my location? I need a way to find destinations, but not disclose my location. Can that be developed? Or, for whatever reason, can you say you are in a certain location when you are not? It kind of defeats the purpose, but....
Replies
0
Boosts
0
Views
316
Activity
Feb ’17
SpriteKit Programming Guide in Swift?
Hi, will there be a SpriteKit Programming Guide in Swift?I can only find the Obj-C Version: https://developer.apple.com/library/prerelease/ios/documentation/GraphicsAnimation/Conceptual/SpriteKit_PG/Introduction/Introduction.html
Replies
3
Boosts
0
Views
2.5k
Activity
Jul ’15
google maps error
Hello!We have an ecommerce site that has a link to a location on google maps. If this is tried to open on any iphone or ipad that does not have the google maps app downloaded, an error message pops up that says Safari can not open the page because the address is invalid. The location on the map is loaded behind the message and if you press okay the message goes away but this is a bad user experience. If the user has the google maps app then this error does not occur. Has any one else encountered this problem or found a fix for it?Thanks!
Topic: Safari & Web SubTopic: General Tags:
Replies
0
Boosts
0
Views
594
Activity
Jun ’15