From e9a0b1247ff43b9dfc262b9bf658acea9ef5ec5e Mon Sep 17 00:00:00 2001 From: steven Date: Thu, 17 Apr 2025 09:55:52 -0400 Subject: [PATCH] base tag broke the csv fetch --- templates/map.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/map.html b/templates/map.html index 9a434f9..72335d0 100644 --- a/templates/map.html +++ b/templates/map.html @@ -8,7 +8,7 @@ - + @@ -17,7 +17,7 @@ let map=L.map("map",{center:[38.2,-85.75],zoom:13,layers:[L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png")]}); let stops={{stops}}; for (stop in stops){ - L.circle(stops[stop]).bindPopup(`Stop #${stop}`).addTo(map) + L.circle(stops[stop]).bindPopup(`Stop #${stop}`).addTo(map) } let layerControl=L.control.layers().addTo(map); let busLayers={},busMarkers={};