From 6f5acd26e8b05a77d415420fc4e2309b2e659a09 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 13 Aug 2015 16:55:37 +0100 Subject: [PATCH 1/1] Enable https for thunderforest layers --- vendor/assets/leaflet/leaflet.osm.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vendor/assets/leaflet/leaflet.osm.js b/vendor/assets/leaflet/leaflet.osm.js index cbedd045a..29b9d47e7 100644 --- a/vendor/assets/leaflet/leaflet.osm.js +++ b/vendor/assets/leaflet/leaflet.osm.js @@ -25,14 +25,18 @@ L.OSM.Mapnik = L.OSM.TileLayer.extend({ L.OSM.CycleMap = L.OSM.TileLayer.extend({ options: { - url: 'http://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}.png', + url: document.location.protocol === 'https:' ? + 'https://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}.png' : + 'http://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}.png', attribution: '© OpenStreetMap contributors. Tiles courtesy of Andy Allan' } }); L.OSM.TransportMap = L.OSM.TileLayer.extend({ options: { - url: 'http://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}.png', + url: document.location.protocol === 'https:' ? + 'https://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}.png' : + 'http://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}.png', attribution: '© OpenStreetMap contributors. Tiles courtesy of Andy Allan' } }); -- 2.43.2