From beb4592233d1f7cbaab60e3befceae676146f2c3 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Thu, 2 Jan 2025 23:24:51 -0600 Subject: [PATCH] Place track on top of plats --- map.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/map.html b/map.html index 1059595..b47a315 100644 --- a/map.html +++ b/map.html @@ -96,12 +96,6 @@ const plats = await plats_req.json(); const data = await data_req.json(); - L.geoJSON(track, { - style: { - color: "maroon", - }, - }).addTo(map); - L.geoJSON(plats, { filter: feature => !feature.properties.TAO_NAME.toLowerCase().includes("lawrence deer club"), onEachFeature: function(feature, layer) { @@ -121,6 +115,12 @@ }, }).addTo(map); + L.geoJSON(track, { + style: { + color: "maroon", + }, + }).addTo(map); + for (let stand of data.stands) { if (stand.location) { const marker = L.marker(stand.location).addTo(map);