Fix bad JS for marker rendering

This commit is contained in:
Eli Ribble 2025-11-21 16:41:24 +00:00
parent 54d9ce616d
commit 689cc0319d
No known key found for this signature in database

View file

@ -13,8 +13,8 @@ function mapMarkers() {
const markers = [
{{ range .Markers }}
new mapboxgl.Marker().setLngLat([{{.LatLng.Lng}}, {{.LatLng.Lat}}])
];
{{end}}
];
return markers;
}