Reputation: 45
I have designed my required map on https://www.mapbox.com/editor/ with several polygons, however when I load the same map using the id on my ios 7 test app the map is displayed ok but the polygons are not visible/added in the ios app.
Here is the code I am using which is the sample code given on the mapbox site...
RMMapboxSource *tileSource = [[RMMapboxSource alloc] initWithMapID:@"ID_OF_MAPBOX_MAP"];
RMMapView *mapView = [[RMMapView alloc] initWithFrame:self.view.bounds andTilesource:tileSource];
[self.view addSubview:mapView];
Have tried many different changes but at this point I am trying to figure out if this is actually supported.
Upvotes: 0
Views: 271