From dc98be9b582df01b628b5c99ec4596a4b1213cc0 Mon Sep 17 00:00:00 2001 From: Robbe Van Herck Date: Wed, 13 May 2020 17:01:17 +0200 Subject: [PATCH 1/2] Move to blokdata.zeus.gent --- src/js/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/map.js b/src/js/map.js index 9254096..4de0d69 100644 --- a/src/js/map.js +++ b/src/js/map.js @@ -46,7 +46,7 @@ $(document).ready(function() { detectRetina: true }).addTo(map); - $.getJSON('data.json') + $.getJSON('http://blokdata.zeus.gent/data.json') .done(function(data) { var geojson = L.geoJson(data, { onEachFeature: onEachFeature, From ef3f74b3809b099758403d85945f8256e137ae81 Mon Sep 17 00:00:00 2001 From: Robbe Van Herck Date: Wed, 13 May 2020 17:02:38 +0200 Subject: [PATCH 2/2] Security++ --- src/js/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/map.js b/src/js/map.js index 4de0d69..aa81a15 100644 --- a/src/js/map.js +++ b/src/js/map.js @@ -46,7 +46,7 @@ $(document).ready(function() { detectRetina: true }).addTo(map); - $.getJSON('http://blokdata.zeus.gent/data.json') + $.getJSON('https://blokdata.zeus.gent/data.json') .done(function(data) { var geojson = L.geoJson(data, { onEachFeature: onEachFeature,