diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 5279104..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/index.html b/index.html index a47b33d..dbad08c 100644 --- a/index.html +++ b/index.html @@ -46,6 +46,11 @@ coords: [40.1,-95.9], zoom: 4 }, + { + name: 'Hartford CT to Burlington VT 2023', + coords: [43.47, -72.93], + zoom: 7 + }, { name: 'Palouse to Cascades Trail 2023', coords: [47.19, -120.94], @@ -161,6 +166,13 @@ layer.bindPopup(popupText); } + $.getJSON("routes/vermont2023.geojson", function (data){ + var geoJsonLayer = L.geoJson(data, { + style: {color: "purple", weight: 3 }, + onEachFeature: onEachFeature + }).addTo(map); + }); + $.getJSON("routes/ptct-2023.geojson", function (data){ var geoJsonLayer = L.geoJson(data, { style: {color: "black", weight: 3 },