From 0d2e1608ba7aba12f173c526be8813a2a4b99095 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 7 Dec 2015 15:59:13 +0000 Subject: [PATCH 1/1] Enable https for humanitarian layer --- vendor/assets/leaflet/leaflet.osm.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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' -- 2.43.2