diff options
Diffstat (limited to 'web/app/view/BaseMap.js')
-rw-r--r-- | web/app/view/BaseMap.js | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/web/app/view/BaseMap.js b/web/app/view/BaseMap.js index 50746658..a3524208 100644 --- a/web/app/view/BaseMap.js +++ b/web/app/view/BaseMap.js @@ -42,9 +42,11 @@ Ext.define('Traccar.view.BaseMap', { layer = new ol.layer.Tile({ source: new ol.source.XYZ({ url: server.get('mapUrl'), - attributions: [new ol.Attribution({ - html: '' - })] + attributions: [ + new ol.Attribution({ + html: '' + }) + ] }) }); } else if (type === 'bingRoad') { @@ -61,10 +63,29 @@ Ext.define('Traccar.view.BaseMap', { imagerySet: 'Aerial' }) }); - } else { + } else if (type === 'osm'){ layer = new ol.layer.Tile({ source: new ol.source.OSM({}) }); + } else { + layer = new ol.layer.Tile({ + source: new ol.source.XYZ({ + urls: [ + 'https://cartodb-basemaps-a.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png', + 'https://cartodb-basemaps-b.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png', + 'https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png', + 'https://cartodb-basemaps-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>' + ] + }) + ] + }) + }); } lat = user.get('latitude') || server.get('latitude') || Traccar.Style.mapDefaultLat; |