Enable https for humanitarian layer
This commit is contained in:
parent
03356be588
commit
0d2e1608ba
1 changed files with 3 additions and 1 deletions
4
vendor/assets/leaflet/leaflet.osm.js
vendored
4
vendor/assets/leaflet/leaflet.osm.js
vendored
|
@ -55,7 +55,9 @@ L.OSM.MapQuestOpen = L.OSM.TileLayer.extend({
|
||||||
|
|
||||||
L.OSM.HOT = L.OSM.TileLayer.extend({
|
L.OSM.HOT = L.OSM.TileLayer.extend({
|
||||||
options: {
|
options: {
|
||||||
url: 'http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png',
|
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',
|
||||||
maxZoom: 20,
|
maxZoom: 20,
|
||||||
subdomains: 'abc',
|
subdomains: 'abc',
|
||||||
attribution: '© <a href="http://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors. Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'
|
attribution: '© <a href="http://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors. Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue