From 4094da3990cf25bfbe6aeabe82b80d34456a3e73 Mon Sep 17 00:00:00 2001 From: Eike Send Date: Tue, 30 Jun 2026 22:46:17 +0200 Subject: [PATCH 1/2] Fix double fwd slash error in valhalla server URL --- isochrone/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isochrone/main.js b/isochrone/main.js index 832907d..06e5809 100644 --- a/isochrone/main.js +++ b/isochrone/main.js @@ -59,7 +59,7 @@ function getContours () { polygons: document.getElementById('polygons_lines').value === 'polygons' } - const url = document.getElementById('baseurl').value + '/isochrone?json=' + JSON.stringify(json) + const url = document.getElementById('baseurl').value + 'isochrone?json=' + JSON.stringify(json) fetch(url).then(response => response.json()).then(isochrones => { // clear this if its not empty From 890da4ac7fe98e733776578fe7f9461abe75203a Mon Sep 17 00:00:00 2001 From: Eike Send Date: Tue, 30 Jun 2026 22:47:24 +0200 Subject: [PATCH 2/2] Create responsive version of isochrone demo --- isochrone/index.html | 31 ++++++++----- isochrone/styles.css | 104 +++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 120 insertions(+), 15 deletions(-) diff --git a/isochrone/index.html b/isochrone/index.html index 9332f5a..1bd5586 100644 --- a/isochrone/index.html +++ b/isochrone/index.html @@ -5,8 +5,6 @@ Isochrones - - @@ -14,8 +12,8 @@