Set track color to maroon
This commit is contained in:
parent
5aec4b7e2b
commit
adba133d75
6
map.html
6
map.html
|
@ -96,7 +96,11 @@
|
|||
const plats = await plats_req.json();
|
||||
const data = await data_req.json();
|
||||
|
||||
L.geoJSON(track).addTo(map);
|
||||
L.geoJSON(track, {
|
||||
style: {
|
||||
color: "maroon",
|
||||
},
|
||||
}).addTo(map);
|
||||
|
||||
L.geoJSON(plats, {
|
||||
filter: feature => !feature.properties.TAO_NAME.toLowerCase().includes("lawrence deer club"),
|
||||
|
|
Loading…
Reference in a new issue