Enable https for humanitarian layer

This commit is contained in:
Tom Hughes 2015-12-07 15:59:13 +00:00
parent 03356be588
commit 0d2e1608ba

View file

@ -55,7 +55,9 @@ L.OSM.MapQuestOpen = L.OSM.TileLayer.extend({
L.OSM.HOT = L.OSM.TileLayer.extend({
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,
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>'