Skip to content

Commit

Permalink
added california2024
Browse files Browse the repository at this point in the history
  • Loading branch information
JackDougherty committed Feb 23, 2024
1 parent d68df38 commit 5419d78
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
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: 'Dana Point to LA 2024',
coords: [33.68, -118.01],
zoom: 7
},
{
name: 'Hartford CT to Burlington VT 2023',
coords: [43.47, -72.93],
Expand Down Expand Up @@ -166,6 +171,13 @@
layer.bindPopup(popupText);
}

$.getJSON("routes/california2024.geojson", function (data){
var geoJsonLayer = L.geoJson(data, {
style: {color: "purple", weight: 3 },
onEachFeature: onEachFeature
}).addTo(map);
});

$.getJSON("routes/vermont2023.geojson", function (data){
var geoJsonLayer = L.geoJson(data, {
style: {color: "purple", weight: 3 },
Expand Down
1 change: 1 addition & 0 deletions routes/california2024.geojson

Large diffs are not rendered by default.

0 comments on commit 5419d78

Please sign in to comment.