From: Tom Hughes Date: Mon, 7 Dec 2015 15:59:13 +0000 (+0000) Subject: Enable https for humanitarian layer X-Git-Tag: live~3982 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/0d2e1608ba7aba12f173c526be8813a2a4b99095?hp=03356be5887ec2075f68e42bf8fa0928fa0ce249;ds=sidebyside Enable https for humanitarian layer --- diff --git a/vendor/assets/leaflet/leaflet.osm.js b/vendor/assets/leaflet/leaflet.osm.js index 29b9d47e7..6b78fe9be 100644 --- a/vendor/assets/leaflet/leaflet.osm.js +++ b/vendor/assets/leaflet/leaflet.osm.js @@ -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: '© OpenStreetMap contributors. Tiles courtesy of Humanitarian OpenStreetMap Team'