From 08d3fd3539cc3147068dc8261a7eec54f9084256 Mon Sep 17 00:00:00 2001 From: you Date: Thu, 19 Mar 2026 21:39:38 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20don't=20fitBounds=20on=20initial=20load?= =?UTF-8?q?=20=E2=80=94=20respect=20Bay=20Area=20default=20center?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/map.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/map.js b/public/map.js index 6ff541f3..3377f6ed 100644 --- a/public/map.js +++ b/public/map.js @@ -209,7 +209,8 @@ buildJumpButtons(); renderMarkers(); - if (!userHasMoved) fitBounds(); + // Don't fitBounds on initial load — respect the Bay Area default or saved view + // Only fitBounds on subsequent data refreshes if user hasn't manually panned } catch (e) { console.error('Map load error:', e); }