diff --git a/templates/satellite_dashboard.html b/templates/satellite_dashboard.html index 3c3b622..6ea9b84 100644 --- a/templates/satellite_dashboard.html +++ b/templates/satellite_dashboard.html @@ -2384,16 +2384,9 @@ } } - const obsIcon = L.divIcon({ - className: 'obs-marker', - html: `
`, - iconSize: [12, 12], - iconAnchor: [6, 6] - }); - - observerMarker = L.marker([lat, lon], { icon: obsIcon }) - .addTo(groundMap) - .bindPopup(`${locationLabel}
${lat.toFixed(4)}°, ${lon.toFixed(4)}°`); + observerMarker = MapUtils._buildReticle([lat, lon]); + observerMarker.addTo(groundMap); + observerMarker.bindPopup(`${locationLabel}
${lat.toFixed(4)}°, ${lon.toFixed(4)}°`); } function updateStats() {