diff --git a/src/public/index.html b/src/public/index.html index 68686bd..2e1fa54 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -2742,6 +2742,11 @@ attribution: 'Tiles © OpenStreetMap | Data from Meshtastic', }); + var openTopoMapTileLayer = L.tileLayer('https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png', { + maxZoom: 17, // open topo map doesn't have tiles closer than this + attribution: 'Tiles © OpenStreetMap', + }); + var esriWorldImageryTileLayer = L.tileLayer('https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}', { maxZoom: 21, // esri doesn't have tiles closer than this attribution: 'Tiles © Esri | Data from Meshtastic' @@ -2761,6 +2766,7 @@ var tileLayers = { "OpenStreetMap": openStreetMapTileLayer, + "OpenTopoMap": openTopoMapTileLayer, "Esri Satellite": esriWorldImageryTileLayer, "Google Satellite": googleSatelliteTileLayer, "Google Hybrid": googleHybridTileLayer,