diff options
Diffstat (limited to 'web/app/view/map/BaseMap.js')
-rw-r--r-- | web/app/view/map/BaseMap.js | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/web/app/view/map/BaseMap.js b/web/app/view/map/BaseMap.js index 0dab7ca1..c4297f68 100644 --- a/web/app/view/map/BaseMap.js +++ b/web/app/view/map/BaseMap.js @@ -69,9 +69,19 @@ Ext.define('Traccar.view.map.BaseMap', { imagerySet: 'AerialWithLabels' }) }); - } else if (type === 'osm') { + } else if (type === 'carto') { layer = new ol.layer.Tile({ - source: new ol.source.OSM({}) + source: new ol.source.XYZ({ + url: 'https://cartodb-basemaps-{a-d}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png', + attributions: [ + new ol.Attribution({ + html: [ + '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> ' + + 'contributors, © <a href="https://carto.com/attributions">CARTO</a>' + ] + }) + ] + }) }); } else if (type === 'baidu') { layer = new ol.layer.Tile({ @@ -135,17 +145,7 @@ Ext.define('Traccar.view.map.BaseMap', { }); } else { layer = new ol.layer.Tile({ - source: new ol.source.XYZ({ - url: 'https://cartodb-basemaps-{a-d}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png', - attributions: [ - new ol.Attribution({ - html: [ - '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> ' + - 'contributors, © <a href="https://carto.com/attributions">CARTO</a>' - ] - }) - ] - }) + source: new ol.source.OSM({}) }); } |