Skip to content

Commit

Permalink
Always use https for *every* layer
Browse files Browse the repository at this point in the history
  • Loading branch information
grischard committed Apr 6, 2018
1 parent c0cc38b commit f31504f
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions leaflet-osm.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,21 @@ L.OSM.Mapnik = L.OSM.TileLayer.extend({

L.OSM.CycleMap = L.OSM.TileLayer.extend({
options: {
url: document.location.protocol === 'https:' ?
'https://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}{r}.png?apikey={apikey}' :
'http://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}{r}.png?apikey={apikey}',
url: 'http://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}{r}.png?apikey={apikey}',
attribution: '© <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors. Tiles courtesy of <a href="http://www.thunderforest.com/" target="_blank">Andy Allan</a>'
}
});

L.OSM.TransportMap = L.OSM.TileLayer.extend({
options: {
url: document.location.protocol === 'https:' ?
'https://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}{r}.png?apikey={apikey}' :
'http://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}{r}.png?apikey={apikey}',
url: 'http://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}{r}.png?apikey={apikey}',
attribution: '© <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors. Tiles courtesy of <a href="http://www.thunderforest.com/" target="_blank">Andy Allan</a>'
}
});

L.OSM.HOT = L.OSM.TileLayer.extend({
options: {
url: document.location.protocol === 'https:' ?
'https://tile-{s}.openstreetmap.fr/hot/{z}/{x}/{y}.png' :
'http://tile-{s}.openstreetmap.fr/hot/{z}/{x}/{y}.png',
url: 'http://tile-{s}.openstreetmap.fr/hot/{z}/{x}/{y}.png',
maxZoom: 20,
subdomains: 'abc',
attribution: '© <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors. Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'
Expand Down

0 comments on commit f31504f

Please sign in to comment.