You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//...MapBox: {url: 'https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}{r}.png?access_token={accessToken}',options: {attribution:
'Imagery from <a href="http://mapbox.com/about/maps/">MapBox</a> — '+'Map data {attribution.OpenStreetMap}',subdomains: 'abcd',id: 'streets',accessToken: '<insert your access token here>',}},//...
This causes 404s on the map tiles when the default id is used.
Either the default id should be mapbox.streets, or if ids are supposed be supplied without the mapbox. prefix then the url should be https://api.tiles.mapbox.com/v4/mapbox.{id}/{z}/{x}/{y}{r}.png?access_token={accessToken}
The text was updated successfully, but these errors were encountered:
The MapBox provider code is:
This causes 404s on the map tiles when the default id is used.
Either the default id should be
mapbox.streets
, or if ids are supposed be supplied without themapbox.
prefix then the url should behttps://api.tiles.mapbox.com/v4/mapbox.{id}/{z}/{x}/{y}{r}.png?access_token={accessToken}
The text was updated successfully, but these errors were encountered: