diff --git a/static/js/core/settings-manager.js b/static/js/core/settings-manager.js index bc4215f..756e38e 100644 --- a/static/js/core/settings-manager.js +++ b/static/js/core/settings-manager.js @@ -20,12 +20,12 @@ const Settings = { subdomains: 'abc' }, cartodb_dark: { - url: 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', + url: 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', attribution: '© OpenStreetMap contributors © CARTO', subdomains: 'abcd' }, cartodb_light: { - url: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png', + url: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', attribution: '© OpenStreetMap contributors © CARTO', subdomains: 'abcd' }, diff --git a/static/js/modes/meshtastic.js b/static/js/modes/meshtastic.js index 24ecc50..30fbf72 100644 --- a/static/js/modes/meshtastic.js +++ b/static/js/modes/meshtastic.js @@ -94,7 +94,7 @@ const Meshtastic = (function() { meshMap = L.map('meshMap').setView([defaultLat, defaultLon], 4); // Dark themed map tiles - L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { + L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', { attribution: '© OSM © CARTO', maxZoom: 19 }).addTo(meshMap); diff --git a/templates/adsb_dashboard.html b/templates/adsb_dashboard.html index be0c710..47142a2 100644 --- a/templates/adsb_dashboard.html +++ b/templates/adsb_dashboard.html @@ -2340,7 +2340,7 @@ sudo make install maxZoom: 15 }); - L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { + L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', { attribution: '© OSM © CARTO', maxZoom: 19 }).addTo(radarMap); diff --git a/templates/ais_dashboard.html b/templates/ais_dashboard.html index 02a3bd0..0fb34d8 100644 --- a/templates/ais_dashboard.html +++ b/templates/ais_dashboard.html @@ -391,7 +391,7 @@ }); // Dark themed map tiles - L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { + L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', { attribution: '© OSM © CARTO', maxZoom: 19 }).addTo(vesselMap); diff --git a/templates/index.html b/templates/index.html index cb2c23b..4378e3d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7592,7 +7592,7 @@ aprsMap = L.map('aprsMap').setView([initialLat, initialLon], initialZoom); // Dark themed map tiles - L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { + L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', { attribution: '© OSM © CARTO', maxZoom: 19 }).addTo(aprsMap); @@ -8495,7 +8495,7 @@ attributionControl: false }); - L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { + L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', { attribution: '© OSM © CARTO', maxZoom: 19 }).addTo(groundTrackMap); diff --git a/templates/satellite_dashboard.html b/templates/satellite_dashboard.html index 44ce834..466e2ac 100644 --- a/templates/satellite_dashboard.html +++ b/templates/satellite_dashboard.html @@ -416,7 +416,7 @@ worldCopyJump: true }); - L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { + L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', { attribution: '© OSM © CARTO', maxZoom: 19 }).addTo(groundMap);