From 535fda7cce4b4bee1edf3daf2e906e7247c52154 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 26 Apr 2026 09:27:33 -0500 Subject: [PATCH] feat(rover): default Maidenhead grid overlay to on --- assets/js/rover_map_hook.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/js/rover_map_hook.ts b/assets/js/rover_map_hook.ts index 85f58e41..e2815913 100644 --- a/assets/js/rover_map_hook.ts +++ b/assets/js/rover_map_hook.ts @@ -91,7 +91,7 @@ export const RoverMap: Partial = { this.selectedCandidateMarker = null this.candidatePathLayer = L.layerGroup() this.gridLayer = L.layerGroup() - this.gridVisible = false + this.gridVisible = true this.cellLookup = new Map() this.topoLayer = null @@ -183,6 +183,8 @@ export const RoverMap: Partial = { map.fitBounds(this.driveCircle.getBounds(), { padding: [20, 20] }) this.candidatePathLayer.addTo(map) + this.gridLayer.addTo(map) + updateGridOverlay(map, this.gridLayer) L.control.scale({ metric: false, imperial: true, position: "bottomleft" }).addTo(map)