From 3be627cf4b593cf7e48f46512520e321142540b8 Mon Sep 17 00:00:00 2001 From: Jon Kristensen Date: Thu, 30 Jun 2016 12:57:59 +0200 Subject: Fetch MapQuest images via HTTPS rather than HTTP --- web/js/map-OpenStreetMap.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'web/js/map-OpenStreetMap.js') diff --git a/web/js/map-OpenStreetMap.js b/web/js/map-OpenStreetMap.js index b2d6a4f8b..a742e61ba 100644 --- a/web/js/map-OpenStreetMap.js +++ b/web/js/map-OpenStreetMap.js @@ -63,10 +63,10 @@ OpenLayers.Layer.OSM.MapQuestOpen = OpenLayers.Class(OpenLayers.Layer.OSM, { */ initialize: function(name, options) { var url = [ - "http://otile1.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", - "http://otile2.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", - "http://otile3.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", - "http://otile4.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png" + "https://otile1-s.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", + "https://otile2-s.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", + "https://otile3-s.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", + "https://otile4-s.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png" ]; options = OpenLayers.Util.extend({ /* Below line added to OSM's file in order to allow minimum zoom level */ -- cgit v1.2.3