Search results for

Apple Maps Guides

149,634 results found

Post

Replies

Boosts

Views

Activity

Implementing Map Span in iOS 17
I have a map (iOS 17) that displays the three Apple maps types (standard, hybrid, and imagery). When the hybrid or imagery map is displayed for the first time it is zoomed in to the max and out-of-focus. It appears to be a problem with the span. I would like to set the span to fix this, but I'm not sure if span has a new name or is no longer used. In previous versions of iOS I had a region that defined the span and coordinate center, It appears that this has now been deprecated: let span = MKCoordinateSpan(latitudeDelta: 0.005, longitudeDelta: 0.005) let region = MKCoordinateRegion(center: coordinate, span: span) MapView(region: region, mapType: mapType, coordinate: coordinate) Here is my actual code for display a map (iOS 17): struct DetailView: View { var item: TravelEntries // <-- coordinates arrive from CoreData Transaction @Binding var mapType: Int var coordinate: CLLocationCoordinate2D { CLLocationCoordinate2D( latitude: item.entryLat, longitude: item.entr
2
0
2k
Oct ’23
What are the alternatives to allow users to use maps offline?
Hi all,After some research I'm a bit confused with the subject question. Is there a way nowadays to download Apple maps tiles to display the map when user is offline (without data connection)? We are working in an app for backpackers and they are ussualy offline or with some data usage restrictions in your smartphones. Seems to be that the best option is to use http://www.mapbox.com that also provides assistance to reach places through their directions API. Before proceed with this paid solution I really need to discard the change of use MapKit or some alternative to display offline maps. This is my first post on the Apple devs forum so I've been clear. All the information is really welcome. Regards,Hernán
1
0
1.2k
Sep ’15
Findersync not working on mapped devices.
I want to add context menu items on right click of any folder.I am able to add them using Findersync extension for path /Users/username/anyFolder, but the same is not working for path of mapped devices like /Volumes/path_of_mapped_device.It is working for local user home path but not for any mapped devices/shares connected using go->connect to server.How should I resolve it and get my context menu on mapped shares also.
0
0
120
Nov ’16
SwiftUI - Adjust Map() scale/zoom
Hi, I'm looking through SwiftUI Map for SwiftUI documentation (including IOS17 Beta) for way to adjust Map() scale, or zoom level, while simultaneously showing user's location and heading, for which I'm doing this @State var position = MapCameraPosition = .userLocation(followsHeading: true, fallback: .automatic) Map(position: $position) It does not appear to be possible so am looking for confirmation. Thanks everyone.
3
0
3.8k
Jul ’23
How to make large "mapped" games? Where user explores a map size larger than screen?
Hello,I am interested in making a game where the user would need to explore a map that would be WAY bigger than the size of the iPhone screen. I'm not exactly sure what this is called or how I would go about googling/researching how to make this work. Could someone please point me in the right direction?Also, I would have many monsters randomly spawned on this large map. I was thinking instead of loading them all the sprites at once it would be best to have variables for their positions and only load the sprites once they have come into the user's view. Am I correct with thinking this?**EDIT** Please note I would like to do this in Sprite Kit if possible!! Or I could change platform if needed, but spritekit is what I have been learning to use as of lately.Thanks,Peter
3
0
737
Jul ’15
Can I use RWorld map together with roomCaptureView?
Does anybody know if I can use the ARWorld map together with roomCaptureView? So that I can scan and save one Room, then save the data from scan, save the ARWorldmap and then make a new roomCaptureView.captureSession to scan the new room? Right know I am first calling: roomCaptureView?.captureSession.run(configuration: roomCaptureSessionConfig) and then roomCaptureView.captureSession.arSession.run(roomCaptureViewARconfigurationFunc) with the saved ARWorldMap. @IBAction func saveWorldMapAction(_ sender: Any) { roomCaptureView.captureSession.arSession.getCurrentWorldMap { worldMap, error in guard let map = worldMap else { self.worldMapLabel.text = error (error!.localizedDescription) ; return } do { let data = try NSKeyedArchiver.archivedData(withRootObject: map, requiringSecureCoding: true) try data.write(to: self.mapSaveURL, options: [.atomic]) DispatchQueue.main.async { self.loadWordMapButton.isHidden = false self.loadWordMapButton.isEnabled = true self.worldMapLabel.text = Map
0
0
761
Nov ’22
Reply to Apple Business Manager
Hello, The Apple Business Manager portal underwent some changes lately and we have adjusted our documentation to match. See the section that begins here: https://support.apple.com/guide/apple-business-manager/intro-to-device-management-asm6a88f692e/web The device assignment section is here: https://support.apple.com/guide/apple-business-manager/assign-reassign-or-unassign-devices-asmf500c0851/web As far as manual device enrollment goes, this is done with Apple Configurator 2 and the devices will appear in Apple Business Manager under “Devices added by Apple Configurator 2”: https://support.apple.com/guide/apple-business-manager/assign-devices-added-from-apple-configurator-apd200a54d59/web Hope this helps!
Nov ’20
Reply to Apple Maps App crashes
10/21/2020- Apple Maps crashes 30 seconds in every time. Crashes more often when using apps like Spotify. crashes= I’ve mapped a location and started directions. 30 seconds in the app closes stops mapping and I have to start directions over. I’ve since moved onto google maps
Oct ’20
Reply to Rename the street on the Apple map
Thanks for reply! I have tried to rename the street on the Apple via map settings many times / Report an Issue/Map Labels/ Rename roads category but unfortunately do not have any feedback yet. I also submitted an inquiry on the Apple Maps Product Feedback website and got an answer that my issue was forwarded to the internal team of the map but it may fall into the category of being longer-term fixes. I need to know is it possible to speed up the process of fixing the issue? Can I hope that this issue will be finally fixed?
Nov ’21
Changes to CarPlay maps Application scene
I am looking at the demo code for CarPlay Maps app - https://developer.apple.com/documentation/carplay/integrating-carplay-with-your-navigation-app This worked in IOS 18 but now on IOS26 it doesn't work, eg the map in the CarPlay app no longer shows up. I don't see any docks to say what has changed, I wonder if anyone has any ideas?
0
0
97
Jun ’25