Search results for

Apple Maps Guides

154,032 results found

Post

Replies

Boosts

Views

Activity

Lack of Guides and API descriptions in Documentation
I feel sorry for developers to the Apple platforms these days. They will never know how good Apple's Developer documentation once was.A decade ago, it was truly a pleasure to read about how to build things with Apple's OSes. There were well written guides on each subsystem that told the developer how the subsystem worked and how to solve common problems in code using the subsystem. And the reference documentation actually documented every API. None of this no overview available crap when you click on an api.These days developers are stuck searching StackOverflow, wasting an hour watching a WWDC video in the hopes that it might talk about the api that you need (thankfully they are at least searchable now, so you can at least quickly find out that they almost never contain the answer that you are looking for), or asking on dev forums in the hopes that someone might answer in a reasonable time.These are all fine _additional_ aids in development, but good guides and co
5
0
1.8k
Jul ’19
Map region on Universal application
Hello.I have an application with two storyboards (one for iPad and one for iPhone). I use the following to set the map area: -(void) viewWillAppear:(BOOL)animated { ... [self.mapView removeAnnotations:self.mapView.annotations]; self.mapLocations = [[NSMutableArray alloc]init]; self.showMapRect = MKMapRectNull; [self addAnnotation]; [self.mapView setVisibleMapRect:self.showMapRect edgePadding:UIEdgeInsetsMake(30, 30, 30, 30) animated:YES]; } -(void) addAnnotation { CLLocationCoordinate2D mapLocation; IGAMapAnnotation *mapAnnotation; // If a set of coordinates is empty, it will have an empty object @. // This object must be removed from the array, otherwise it will be an error. // In order not to change the original array, we create a copy NSMutableArray *coordinatesTempArray = [[NSMutableArray alloc]initWithArray:self.coordinatesArray copyItems:YES]; [coordinatesTempArray removeObject:@]; // Calculate how many points are included in the final flightplan NSInteger numberOfPoints = [coordinatesTempArray
5
0
455
Aug ’15
Maps not going through NEFilterDataProvider
I've got an NEFilterDataProvider that works on Safari and Mail just fine, but when I open Maps, Maps is able to load tiles without any callbacks in NEFilterDataProvider. Even if I have the NEFilterDataProvider just return return [NEFilterNewFlowVerdict dropVerdict]; Maps is still able to download new tiles, and I see the traffic on the wire. This is on today's current GM macOS (not Big Sur). How do I get callbacks for Maps? And what other Apps are able to bypass NEFilterDataProvider?
1
0
474
Oct ’20
Bluetooth MAP Behavior with iPhone.
I am reaching out to you to seek a few clarifications on iPhone behavior w.r.t BR/EDR MAP implementation. We have our MAP MCE implementation and trying to connect with iPhone for MAP Service. Following are the observations: After pairing one should enable 'Notification' tab corresponding to the paired device in iPhone setting. If we don’t enable the Notification, the iPhone will disconnect immediately (This behavior seems specific to iPhone). Example: iPhone Setting -> Go to paired device menu -> Enable Notification. Once the 'Notifications' is enabled and after MAP connection, following are the observation: By default, iPhone will always send following 'message_list_count' as a response for 'GetMessageListing' procedure. message_list_count = 10 from 'inbox' message_list_count = 0 from 'sent' message_list_count = 0 from 'outbox' message_list_count = 0 from 'deleted' Now, with Active MAP connection between iPhone(MAP MSE) & DUT(MAP MCE).
1
0
1.2k
Jun ’23
"Safe Area" layout guide
I use AutoLayout, but I prefer not to use storyboards. Instead, I generally create independent view controllers with their own XIB files.Also, I don't like using UITableViewController and UICollectionViewController. Instead, I prefer to add table views and collection views manually to my XIB files.Will the new Safe Area layout guide be available to me using these techniques? Or will I need to write my own code to adjust things for the iPhone X?Thanks,Frank
3
0
3.5k
Sep ’17
Reply to RealityKit PyshicallyBaseMaterial Displacement
Glad to hear you are using our new APIs! Unfortunately, displacement mapping is not supported within RealityKit. However, I did find a feature request for this in our internal issue tracking system, so the team is aware of the request. The good news is that you might be able to implement displacement mapping yourself using the CustomMaterial APIs. Additionally, I would encourage you to file a feature request on Feedback Assistant for this feature, and provide a bit of info about your use case. This helps us determine demand for particular features and help guide our feature planning for future OS releases.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Oct ’21
Google maps with beta 18
Having multiple issues with google maps via wireless apply car play. 1.: maps freezing 2.:The direction I’m heading seems to be off and searching some times 3.: The most annoying, the audio doesn’t work when I’m using google maps for a trip.
1
0
365
Dec ’24
Add custom map on an mapbox
Hi,I have a problem i use a mapbox map and 4 customs mapmy principap map is mapView is first addmport Mapbox class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let mapView = MGLMapView(frame: view.bounds) mapView.autoresizingMask = [.flexibleWidth, .flexibleHeight] mapView.setCenter(CLLocationCoordinate2D(latitude: 40.74699, longitude: -73.98742), zoomLevel: 9, animated: false) view.addSubview(mapView) }}and i insert customs map with mapView.addSubview(layerView) layerView = MGLMapView(frame: view.bounds) layerView.styleURL = URL(string: styleMapboxView)! layerView.autoresizingMask = [.flexibleWidth, .flexibleHeight] layerView.setCenter(localisationCenterMap, zoomLevel: zoomLevelMap, direction : directionMap, animated: false) layerView.tag = layerMapbox layerView.delegate = self mapView.addSubview(layerView)The problem is the last layer used for gesture , and mapView not translate (only front last map)Normally i insert my LayerView in
1
0
1.5k
Dec ’18
Why no Dictionary to Dictionary map?
Many types can be mapped over, for example: Array, Dictionary and Optional.Other examples could be Result, Future and Signal, and all kinds of list- and tree data structures. It's clear that there are a lot of types for which it makes sense to have map defined.Let's call all such types Mappable types. Any Mappable type can be seen as a type that is wrapping another type:Arrays are wrapping their Element type,Optionals are wrapping their Wrapped type,Dictionaries are wrapping their Element = (Key, Value) type, and so on.Calling the map method of such a Mappable (wrapping) type simply means that we are applying a transform to its wrapped value(s) and get another instance of the same Mappable type back, now wrapping the new (transformed) value(s) which might be of the same or a new wrapped type. But note that the Mappable (wrapping) type itself is the same.Put more succinctly:Using a map(transform: T -> U) on an Array<T> produces an Array<U>Using a map(
9
0
1k
Sep ’15
How to know map provider is TomTom or AutoNavi?
Hi ALL,The MKMapView used AutoNavi map in China, others country used TomTom.My question is how to detect the MKMapView provider? It looks like Apple detect IP address and then auto switch the map to AutoNavi or TomTom, but Apple didn't provide any API to know the status.The AutoNavi used GCJ-02 and TomTom used WGS-84.I know both of the two formats can convert to each other, but the problem is I don't know the map now is AutoNavi or TomTom.Thanks.
1
0
1k
Nov ’17
Google maps in Action Extension
Hello fellas.Im having trouble using Google maps in an action extension on IOS. Im currently writing it in swift 2.2 and i have it working in the Containing app without problems.All possible issues with the API key is checked and this shouldnt be the problem.I load the map just as i do in the containing app, but instead of showing a dot on a map at my location, it shows me this:https://i.stack.imgur.com/6G5ao.pngSo my question is - Is it at all possilbe to use google maps in an Action extension? If so, does anyone have experience whith this issue?I have a question on SO regarding this, you can find it here - http://stackoverflow.com/questions/40997418/where-do-i-set-google-maps-api-key-in-an-action-extension-ios-swiftThanks in advance
0
0
361
Dec ’16