Search results for

“Apple Maps Guides”

159,787 results found

Post

Replies

Boosts

Views

Activity

Reply to Layout constraints don't work in storyboard's second scene
I've appended the code for GameController.swift below. To actually reproduce the bug, you need an image file Card Back.png in the project. It has a resolution of 672x1038 pixels.Create a new iOS Swift Single View Application project.Add Game Controller.swift and Card Back.png to it.In IB, change the view controller class to GameController.Drag a second view controller into the story board and change its class to GameController, too.Create a seque from the first to the second scene. (I added a Tap Gesture Recognizer to the first scene and created a Present Modally seque to the second scene; a Push/Show seque will give the same result.)Run the app on the iPhone simulator. You will see a 5x6 grid of copies of the Card Back image.Tap anywhere on the view to present the second scene.You will see part of one really big card back image.If you do Debug > View Debugging > Capture View Hierarchy and click Show Clipped Content, you will see that there is actually a grid of 672x1038 image views, which obviously doe
Topic: UI Frameworks SubTopic: UIKit Tags:
Apr ’16
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
553
Jul ’21
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
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
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
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
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
539
Aug ’20
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
313
Feb ’17
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
186
Feb ’26
Reply to Searching Apple Maps
I would like to complain of Apple Map inaccuaracy! 95% of people who using APple Map and coming to my office were guided to another city. Its 1755 E Huntington Dr, Duarte, California 91010. Apple Map guided to Monrovia City! It's annoying and I am loosing cumtomers because of Apple Map inaccuracy!
Topic: UI Frameworks SubTopic: UIKit Tags:
Jul ’16
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
593
Jun ’15
Reply to Layout constraints don't work in storyboard's second scene
I've appended the code for GameController.swift below. To actually reproduce the bug, you need an image file Card Back.png in the project. It has a resolution of 672x1038 pixels.Create a new iOS Swift Single View Application project.Add Game Controller.swift and Card Back.png to it.In IB, change the view controller class to GameController.Drag a second view controller into the story board and change its class to GameController, too.Create a seque from the first to the second scene. (I added a Tap Gesture Recognizer to the first scene and created a Present Modally seque to the second scene; a Push/Show seque will give the same result.)Run the app on the iPhone simulator. You will see a 5x6 grid of copies of the Card Back image.Tap anywhere on the view to present the second scene.You will see part of one really big card back image.If you do Debug > View Debugging > Capture View Hierarchy and click Show Clipped Content, you will see that there is actually a grid of 672x1038 image views, which obviously doe
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Apr ’16
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
952
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
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
553
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
930
Activity
Nov ’22
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
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
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
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
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
539
Activity
Aug ’20
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
313
Activity
Feb ’17
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
186
Activity
Feb ’26
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
Reply to Searching Apple Maps
I would like to complain of Apple Map inaccuaracy! 95% of people who using APple Map and coming to my office were guided to another city. Its 1755 E Huntington Dr, Duarte, California 91010. Apple Map guided to Monrovia City! It's annoying and I am loosing cumtomers because of Apple Map inaccuracy!
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’16
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
593
Activity
Jun ’15