Search results for

“Apple Maps Guides”

159,785 results found

Post

Replies

Boosts

Views

Activity

SwiftUI Map Annotations
Hello there, i've came here after searching por a while a solution to the problem i have but i couldn't find anything helpfull. I'm displaying a map in iOS16 using only swiftUI and i'm wondering if its any way to know if the region of the map it's displaying has any annotations or not. I want to display a list in the bottom of the map of annotations that are visible in that map area, but if the user drag to another position without annotations i want to hide that list.
1
0
2.4k
Sep ’23
Map over UITableViewController
I have a standard UITableViewController and I have added an MKMapKit map neatly on the top half of the screen (and the table in the bottom half). During runtime, if we scroll through the table records, the map scrolls up as well. What I wanted to do was have the map static, not scrolling, while I scroll the table. Any ideas on how to accomplish this, please?
4
0
897
May ’22
Reply to Is it possible to contact all users of an app (in exceptional circumstances only)?
Thanks for the suggestion but my app is primarily an Apple Watch app and unfortunately Apple Maps is very limited on Apple Watch. It only provides a static map image, whereas I need a fully interactive vector map, similar to the Apple Maps app, but integrated into my watch app. Also my app is intended for use when hiking, mountain biking etc and Apple Maps is very poor when it comes to paths and trails. In a lot of hiking situations Apple Maps would not be showing much anyway, so my empty vector map is probably a better fallback because it at least shows the breadcrumb trail and users can load and see GPX routes to follow.Thanks though - in most situations Apple Maps would be a reasonable fallback, but probably not in this case.
Jan ’18
Reply to MKMapView doesn't show updated map data
Let's look at this... Apple Maps shows a certain view. When using MKMapView, your app shows the same view. That seems entirely consistent. Google Maps shows a different view. Okay. Google Maps is an entirely different system, nothing to do with Apple Maps, or MKMapView. If you want to use Google Maps data in your app, you can do that (but not in MKMapView... they use a GMSMapView). Another app shows a different view. You think it is using Apple Maps (you spotted an Apple logo). You think it is using MKMapView (how would you know that?). Who knows what it is doing, or using? You would have to ask the app developer. Your app is consistent with Apple Maps. When your local Apple Maps data is updated, your MKMapView will reflect that.
Topic: Programming Languages SubTopic: Swift Tags:
Oct ’22
SwiftUI Map shows through toolbar.
Hi, On iOS 17 beta I have drawn a Map inside a NavigationStack with toolbar buttons. The map is drawing itself above the toolbar background and behind the toolbar buttons, that is the map is drawing right to the bottom of the display but the buttons are visible on top of the map. The Apple Maps logo etc has honoured the safe area correctly. Anyone seen this and know why or how to avoid this? If I replace the map with another view the toolbar is handled properly. Any suggestions appreciated, cheers.
1
0
877
Aug ’23
Reply to Buttons Focus
I suppose you could do this with a focus guide, but it would not map well to the way a user expects the focus engine to work. It is best to only move focus in the direction requested by the user, otherwise it becomes very unpredictable and confusing.Please see the tvOS HIG section on Focus and Selection for some additional information.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’15
Subtitle on Map?
I am using the following code on my map but the subtitle does not show on the map and I am getting this message - for 0.00 seconds - Raster Overlays Above Labels - Failed to decode (terminal) (0.00 sec). Does anyone see a problem with my logic or code? self.mapView.removeOverlays(self.mapView.overlays) let location = sender.location(in: self.mapView) let locCoord = self.mapView.convert(location, toCoordinateFrom: self.mapView) let annotation = MKPointAnnotation() annotation.coordinate = locCoord self.mapView.removeAnnotations(mapView.annotations) self.mapView.addAnnotation(annotation) addCircle(locCoord: locCoord) annotation.title = Bank Angle (angle)° annotation.subtitle = Aircraft } // MARK: Circle overlay. func addCircle(locCoord: CLLocationCoordinate2D) { self.mapView.delegate = self let circle = MKCircle(center: locCoord, radius: distanceInMeters as CLLocationDistance) self.mapView.add(circle) }
1
0
866
Jun ’18
Maps on iOS 9 Beta
I noticed that the following functionality is not working as per expectation on iOS 9 Devices. However, Working fine on below iOS 9 devices.In iOS 9, Apple Maps is not working as expectation, It is displaying iOS Home screen as soon as Apple Maps URL is launched in Safari Browser.Steps to Reproduce:1. Open Safari in iOS 92. Type this URL in Safari Address Barhttp://maps.apple.com/maps?q=Scott+Woodruff,5445+Murrell+Rd+Ste+104,Viera,FL 32955@28.265339,-80.718226&t=m&z=123. It will launch Apple maps prompting by alert view4. As Soon as Apple Maps is launched, iOS Home (Main Screen) is coming to screen.I see this as defect.Expected Results:It should display the corrrect address in mapActual Results:App is going to BackgroundVersion: iOS 9 Beta
2
0
495
Aug ’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.
0
0
608
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
663
Feb ’18
SwiftUI Map Annotations
Hello there, i've came here after searching por a while a solution to the problem i have but i couldn't find anything helpfull. I'm displaying a map in iOS16 using only swiftUI and i'm wondering if its any way to know if the region of the map it's displaying has any annotations or not. I want to display a list in the bottom of the map of annotations that are visible in that map area, but if the user drag to another position without annotations i want to hide that list.
Replies
1
Boosts
0
Views
2.4k
Activity
Sep ’23
Map over UITableViewController
I have a standard UITableViewController and I have added an MKMapKit map neatly on the top half of the screen (and the table in the bottom half). During runtime, if we scroll through the table records, the map scrolls up as well. What I wanted to do was have the map static, not scrolling, while I scroll the table. Any ideas on how to accomplish this, please?
Replies
4
Boosts
0
Views
897
Activity
May ’22
Indent Guide Lines In Xcode
It would be extremely helpful to have indent guides like what Visual Studio has in Xcode as discussed here.Would you agree?
Replies
7
Boosts
0
Views
5.6k
Activity
Jul ’18
Reply to How to add a circle with a desired radius around an MKPointAnnotation?
See Steps for Adding an Overlay to the Map in the guide OOPer mentioned. You already have finished steps 1 and 4.For steps 2 and 3, you need to implement the mapView(_:rendererFor:) delegate method and return a MKCircleRenderer. The renderer allows you to set the fill color, stroke color, etc.
Replies
Boosts
Views
Activity
Oct ’17
Reply to Is it possible to contact all users of an app (in exceptional circumstances only)?
Thanks for the suggestion but my app is primarily an Apple Watch app and unfortunately Apple Maps is very limited on Apple Watch. It only provides a static map image, whereas I need a fully interactive vector map, similar to the Apple Maps app, but integrated into my watch app. Also my app is intended for use when hiking, mountain biking etc and Apple Maps is very poor when it comes to paths and trails. In a lot of hiking situations Apple Maps would not be showing much anyway, so my empty vector map is probably a better fallback because it at least shows the breadcrumb trail and users can load and see GPX routes to follow.Thanks though - in most situations Apple Maps would be a reasonable fallback, but probably not in this case.
Replies
Boosts
Views
Activity
Jan ’18
Reply to MKMapView doesn't show updated map data
Let's look at this... Apple Maps shows a certain view. When using MKMapView, your app shows the same view. That seems entirely consistent. Google Maps shows a different view. Okay. Google Maps is an entirely different system, nothing to do with Apple Maps, or MKMapView. If you want to use Google Maps data in your app, you can do that (but not in MKMapView... they use a GMSMapView). Another app shows a different view. You think it is using Apple Maps (you spotted an Apple logo). You think it is using MKMapView (how would you know that?). Who knows what it is doing, or using? You would have to ask the app developer. Your app is consistent with Apple Maps. When your local Apple Maps data is updated, your MKMapView will reflect that.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’22
3d Map Dallas
When are we going to see an update to 3D maps. The Dallas Texas map is 5 yrs old?
Replies
0
Boosts
0
Views
931
Activity
Jul ’20
SwiftUI Map shows through toolbar.
Hi, On iOS 17 beta I have drawn a Map inside a NavigationStack with toolbar buttons. The map is drawing itself above the toolbar background and behind the toolbar buttons, that is the map is drawing right to the bottom of the display but the buttons are visible on top of the map. The Apple Maps logo etc has honoured the safe area correctly. Anyone seen this and know why or how to avoid this? If I replace the map with another view the toolbar is handled properly. Any suggestions appreciated, cheers.
Replies
1
Boosts
0
Views
877
Activity
Aug ’23
Reply to Buttons Focus
I suppose you could do this with a focus guide, but it would not map well to the way a user expects the focus engine to work. It is best to only move focus in the direction requested by the user, otherwise it becomes very unpredictable and confusing.Please see the tvOS HIG section on Focus and Selection for some additional information.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15
Subtitle on Map?
I am using the following code on my map but the subtitle does not show on the map and I am getting this message - for 0.00 seconds - Raster Overlays Above Labels - Failed to decode (terminal) (0.00 sec). Does anyone see a problem with my logic or code? self.mapView.removeOverlays(self.mapView.overlays) let location = sender.location(in: self.mapView) let locCoord = self.mapView.convert(location, toCoordinateFrom: self.mapView) let annotation = MKPointAnnotation() annotation.coordinate = locCoord self.mapView.removeAnnotations(mapView.annotations) self.mapView.addAnnotation(annotation) addCircle(locCoord: locCoord) annotation.title = Bank Angle (angle)° annotation.subtitle = Aircraft } // MARK: Circle overlay. func addCircle(locCoord: CLLocationCoordinate2D) { self.mapView.delegate = self let circle = MKCircle(center: locCoord, radius: distanceInMeters as CLLocationDistance) self.mapView.add(circle) }
Replies
1
Boosts
0
Views
866
Activity
Jun ’18
Maps on iOS 9 Beta
I noticed that the following functionality is not working as per expectation on iOS 9 Devices. However, Working fine on below iOS 9 devices.In iOS 9, Apple Maps is not working as expectation, It is displaying iOS Home screen as soon as Apple Maps URL is launched in Safari Browser.Steps to Reproduce:1. Open Safari in iOS 92. Type this URL in Safari Address Barhttp://maps.apple.com/maps?q=Scott+Woodruff,5445+Murrell+Rd+Ste+104,Viera,FL 32955@28.265339,-80.718226&t=m&z=123. It will launch Apple maps prompting by alert view4. As Soon as Apple Maps is launched, iOS Home (Main Screen) is coming to screen.I see this as defect.Expected Results:It should display the corrrect address in mapActual Results:App is going to BackgroundVersion: iOS 9 Beta
Replies
2
Boosts
0
Views
495
Activity
Aug ’15
Add a new neighborhood to Maps
We create new development maps for builders and developers. Is it possible for us to add the new streets and addresses to Apple Maps so that visitors can find these brand-new streets and addresses?
Replies
0
Boosts
0
Views
470
Activity
Oct ’24
Packet Tunnel Provider Guide
Hi, I want to develop an enterprise VPN app with a custom protocol. I'm following the documentation but I have no clue how to start, is there any guide I can follow?
Replies
3
Boosts
0
Views
346
Activity
Feb ’25
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
608
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
663
Activity
Feb ’18