Search results for

“Apple Maps Guides”

155,797 results found

Post

Replies

Boosts

Views

Activity

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
856
Jun ’18
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
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
486
Aug ’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:
Apr ’16
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
652
Feb ’18
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
592
May ’22
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
525
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
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
310
Feb ’17
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
856
Activity
Jun ’18
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
913
Activity
Jul ’20
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
486
Activity
Aug ’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
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
457
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
322
Activity
Feb ’25
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
652
Activity
Feb ’18
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
592
Activity
May ’22
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
948
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
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
525
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
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
310
Activity
Feb ’17