diff --git a/src/components/MapView.jsx b/src/components/MapView.jsx index 00b5fe5..fdd2676 100644 --- a/src/components/MapView.jsx +++ b/src/components/MapView.jsx @@ -830,6 +830,12 @@ const MapView = forwardRef(function MapView(_, ref) { map.addControl(new maplibregl.NavigationControl(), 'top-right') + // Scale bar control + map.addControl(new maplibregl.ScaleControl({ + maxWidth: 120, + unit: 'imperial', + }), 'bottom-right') + // Map click — two-click selection model map.on('click', (e) => { // If a stop pin was just clicked, skip diff --git a/src/components/PlaceCard.jsx b/src/components/PlaceCard.jsx index ebfff5f..1167217 100644 --- a/src/components/PlaceCard.jsx +++ b/src/components/PlaceCard.jsx @@ -420,7 +420,7 @@ export function PlaceCard({ place, variant = "preview", expanded = true, onToggl