DEPRECATED-mapbox-ios-sdk
DEPRECATED-mapbox-ios-sdk copied to clipboard
REPLACED – use https://www.mapbox.com/ios-sdk instead
### Steps to Reproduce 1. Set `showsUserLocation` to `YES`. 2. Allow Location Services 3. Go to Settings and turn off Location Services for your app 4. Go back to your...
``` RMMapboxSource *tileSource = [[RMMapboxSource alloc] initWithMapID:@"company.xxxxxx"]; self.mapView.userTrackingMode = RMUserTrackingModeFollow; self.mapView.tileSource = tileSource; ``` That's my code. Upon initialization and setting the `tileSource`, there's a recursion on `setContentSize` in the...
There's an error trying to install Mapbox iOS SDK, it seems like can't find the resources. ``` /Users/JorgeOvalle/Documents/lojals/Proyectos/new BK\/bikestorming-iOS-swift/Bikestorming/Pods/${BUILT_PRODUCTS_DIR}/Mapbox.bundle building file list ... rsync: link_stat "/Users/JorgeOvalle/Documents/lojals/Proyectos/new BK\/bikestorming-iOS-swift/Bikestorming/Pods/${BUILT_PRODUCTS_DIR}/Mapbox.bundle" failed: No such...
[under this doc](https://www.mapbox.com/mapbox-ios-sdk/#binary) it mentions "copied resources": is this the exact term of the thing in XCode?
Why won't this simple line of code won't add an annotation point on the map: ``` RMPointAnnotation *point = [[RMPointAnnotation alloc] init]; point.coordinate = coordinate; [self.mapboxView addAnnotation:point]; ```
Hi, I'm experiencing an issue with the precision of [zoomWithLatitudeLongitudeBoundsSouthWest](https://github.com/mapbox/mapbox-ios-sdk/blob/release/MapView/Map/RMMapView.m#L1234). As you can see below, my map start with a bounding box of (12.965657,-49.285990 66.833126,28.444060) and when I call zoom...
Per old convention we hardcoded Mapbox tiles ending in `.png`: https://github.com/mapbox/mapbox-ios-sdk/blob/2ca520dd960b8c0f8ed88279826b4057cf4f4147/MapView/Map/RMMapboxSource.m#L222 We should expand this to recognize `.jpg` as well due to some backend changes which can cause this.
When using RMMapView.takeSnapshot, it looks like snapshot is using lower resolution tiles. Strangely, the markers appear to be captured at the correct resolution. Also, the stacking order of annotations is...
Function to create circle ``` RMCircle *circle = [[RMCircle alloc] initWithView:mapView radiusInMeters:10000]; ``` used 10000 not as meters (part of kilometers, 10 km as we can expect), but as part...
Hi, I have a question, maybe this is not the best place to ask for it but I have not found a better place. My question is: I need to...