]> git.openstreetmap.org Git - rails.git/commitdiff
Enable https for humanitarian layer
authorTom Hughes <tom@compton.nu>
Mon, 7 Dec 2015 15:59:13 +0000 (15:59 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 7 Dec 2015 15:59:13 +0000 (15:59 +0000)
vendor/assets/leaflet/leaflet.osm.js

index 29b9d47e79a9ac2477affadac0c8755dc8ce8c23..6b78fe9bea76dc9ef66951f77b24c5af1c4266ac 100644 (file)
@@ -55,7 +55,9 @@ L.OSM.MapQuestOpen = L.OSM.TileLayer.extend({
 
 L.OSM.HOT = L.OSM.TileLayer.extend({
   options: {
 
 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>'
     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>'