X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e14476f52df3582bd565145638fe0edcd2bb1b0c..0bd6f889c5a4f8f13decd96d6ef478c29b0e388a:/vendor/assets/leaflet/leaflet.osm.js diff --git a/vendor/assets/leaflet/leaflet.osm.js b/vendor/assets/leaflet/leaflet.osm.js index 813438a1b..0bde8f8a1 100644 --- a/vendor/assets/leaflet/leaflet.osm.js +++ b/vendor/assets/leaflet/leaflet.osm.js @@ -2,7 +2,7 @@ L.OSM = {}; L.OSM.TileLayer = L.TileLayer.extend({ options: { - url: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', + url: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png', attribution: '© OpenStreetMap contributors' }, @@ -14,7 +14,7 @@ L.OSM.TileLayer = L.TileLayer.extend({ L.OSM.Mapnik = L.OSM.TileLayer.extend({ options: { - url: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', + url: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png', maxZoom: 19 } }); @@ -22,6 +22,7 @@ L.OSM.Mapnik = L.OSM.TileLayer.extend({ L.OSM.CycleMap = L.OSM.TileLayer.extend({ options: { url: 'https://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}{r}.png?apikey={apikey}', + maxZoom: 21, attribution: '© OpenStreetMap contributors. Tiles courtesy of Andy Allan' } }); @@ -29,6 +30,7 @@ L.OSM.CycleMap = L.OSM.TileLayer.extend({ L.OSM.TransportMap = L.OSM.TileLayer.extend({ options: { url: 'https://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}{r}.png?apikey={apikey}', + maxZoom: 21, attribution: '© OpenStreetMap contributors. Tiles courtesy of Andy Allan' } }); @@ -44,8 +46,9 @@ L.OSM.HOT = L.OSM.TileLayer.extend({ L.OSM.GPS = L.OSM.TileLayer.extend({ options: { - url: 'https://gps-{s}.tile.openstreetmap.org/lines/{z}/{x}/{y}.png', - maxZoom: 20, + url: 'https://gps.tile.openstreetmap.org/lines/{z}/{x}/{y}.png', + maxZoom: 21, + maxNativeZoom: 20, subdomains: 'abc' } });