Skip to content

Commit

Permalink
added Vermont 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
JackDougherty committed Sep 3, 2023
1 parent 4dde945 commit d68df38
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Binary file removed .DS_Store
Binary file not shown.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down Expand Up @@ -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 },
Expand Down

0 comments on commit d68df38

Please sign in to comment.