Hi
I try to use the OpenStreetMapOverlay with a custom Uri
var osmOverlay = new OpenStreetMapOverlay();
var _uri = new System.Uri("<a href="d.tiles.mapbox.com/v3/tmcw.map-j5fsp01s">d.tiles.mapbox.com/v3/tmcw.map-j5fsp01s</a>");
osmOverlay.CustomServerUris.Add(_uri);
androidMap.MapUnit = GeographyUnit.Meter;androidMap.ZoomLevelSet = new OpenStreetMapsZoomLevelSet();
androidMap.CurrentExtent = osmOverlay.GetBoundingBox();
androidMap.Overlays.Add(osmOverlay);
No problem if I try without
osmOverlay.CustomServerUris.Add(_uri);
But if I try with the custom Uri, there is a mixe with OSM and Mapbox (MapBox is a aerial photo)
Regards
Laurent M