Search results for

Apple Maps Guides

154,029 results found

Post

Replies

Boosts

Views

Activity

Linker Map Compiler Option?
I am working in a multi platform app that relies on configuration scripts. For most platforms I can export the linker Map using the flag -Wl, -Map, file.map or -Wl, -Map=file.com When building through XCode 8, I get an error that -Map is an invalid option. XCode itself supports exporting linker maps in the project settings, so I know the capability is there, but I can't find any documentation anywhere on what the correct option to use is. What invisible flag is XCode setting when you enable exporting a map and assigning a path? What is the correct option to use to enable that from outside of the IDE through scripts or config files? Thanks in advance.
0
0
887
May ’17
How to get a programming guide in a single pdf document ?
I used to download programming guides to get each guide as a single pdf document.I tried today to get new guides, such as File System Programming Guide ; I went to the Mac developer Library (/developer.apple.com/ library/mac/navigation/), found the guide in the list and opened it. I can browse through the document, but cannot find anymore the download as pdf button.Am I looking in the wrong place ? Or has the capabilioty been cancelled ?
2
0
1.3k
Feb ’16
iOS Maps internet port?
Hello people,I'm trying to find out which port is used by MapKit / iOS maps. My application runs behind a VPN connection which grants access to a private network but it blocks evreything else. I still need map-functionality however which is also being blocked. What port does Maps use to download things like map tiles and step by step navigation programs.I have checked https://support.apple.com/en-us/HT202944 but Maps is not listed on there. It does make sense if it uses 80 or 443 but I would like to be sure before fiddling with firewall settings (not my expertise, I easily break stuff xD).Thanks!
0
0
481
Aug ’15
Rotate a Image on Maps
Hi, my Name is Markus and I am working on my first app... What I like to do The user should be able to place an image freely on the map. The Image must scale in real world dimension. The user also should be able to rotate the image via a slider. What I did so far I guess there are smarter ways to do so but it works so fare. The only missing feature is the rotation functionality. I tried to rotate the UIImage but this results in a cropped image since the MKMapRect (which I need to scale) does not rotate class MapViewController: UIViewController { tt@IBOutlet weak var mapView: MKMapView! ttoverride func viewDidLoad() { ttttsuper.viewDidLoad()tttt ttttmapView.delegate = self // prepare the services/map ... // user can change the orientation via a slider ( 0-2*.pi -> 0-360° ) ttttdraw(orientation: 0) tt} ttfunc draw(orientation: Double) { ttttlet region = mapView.region ttttlet center = region.center ttttlet pointsPerMeter = MKMapPointsPerMeterAtLatitude(center.latitude) tttt// Real-World-Obj
0
0
850
Sep ’20
can one implement voice directions using MapKit? How can I use the same directions as Apple Maps?
I need to be able to offer voice turn by turn directions in my app similar to the one in Apple Maps.Yet nowhere do I find any guidance or recommendation, or any idea of how I should go about it.It would seem that MapKit doesn't do it...or did I miss something in the documentation? I get written turn by turn, but not the fancy approach used in Apple Maps. Do I need to use a specific library?Any information will be greatly appreciated!
0
0
1.2k
May ’17
map function argument type
Here's a little test function:import UIKit func foo() { let views1 = (1...2).map { _ in let v = UIView() return v } let views2 = (1...2).map { _ in return UIView() } } I would expect the two map calls to behave identically. In fact, view2 compiles fine; but I get this error on view1:error: cannot invoke 'map' with an argument list of type '(@noescape (Int) throws -> _)' let views1 = (1...2).map { _ in ^ note: expected an argument list of type '(@noescape (Self.Generator.Element) throws -> T)' let views1 = (1...2).map { _ in ^ Can anyone tell me what is going on?Thanks.
2
0
923
Mar ’16
Which API can I use to run my app on a locked iOS device in full screen like Apple Maps?
The iOS Maps app from Apple runs in full screen on a locked iPhone.Which iOS API should be used to achieve similar results? (i.e. the user experience on a locked iOS device for Apple Maps is incredible.)The Apple Maps app runs full screen when iPhone is locked: e.g. this screenshot was taken on a locked iPhone:https://i.stack.imgur.com/bc6Hw.jpgiOS has Widgets (e.g. https://developer.apple.com/design/human-interface-guidelines/ios/extensions/widgets/ but somehow the Apple Maps app appears to run not constrained by the widget container, in full screen on a locked iPhone.I have not seen any other apps with the same behaviour (e.g. Google Maps is using a typical widget on a locked screen which looks very different: not full screen but constrained by the frame of the widget)Thank you.
0
0
544
Aug ’19
Can I open a link to google maps ?
Hi,I am making an app which shows places of interest within a given radius from the user's current location. I wish to plot a route between these two locations on a MKMapView. I tried using the MKDirections class but I always get an error Cannot determine route (or something similar). On researching a bit I found out that this was because Apple does not provide directions support in my country, India. As a workaround, I am using the following code to open Google Maps in the browser.let url = NSURL(string: http://maps.google.com/maps?saddr=(sourceLocation.latitude),(sourceLocation.longitude)&daddr=(destinationLocation.latitude),(destinationLocation.longitude))UIApplication.sharedApplication().openURL(url)So my question is, is this allowed? Can my app get rejected for using google maps?
0
0
369
Jun ’16
Attaching depth map manually
Hi, I have a problem when I want to attach my grayscale depth map image into the real image. The produced depth map doesn't have the cameraCalibration value which should responsible to align the depth data to the image. How do I align the depth map? I saw an article about it but it is not really detailed so I might be missing some process. I tried to: convert my depth map into pixel buffer create image destination ref and add the image there. add the auxData (depth map dict) This is the output: There is some black space there and my RGB image colour changes
1
0
429
Feb ’25