Renders the Session Detail page's Map tab — the design's full-tab route view. Composition:
BigMap
Hotspots
TripStats
Hotspot detection runs once per session via useMemo since the walk is O(n) over the row data — cheap for typical drives but worth caching across tab switches.
useMemo
The Map tab body React element.
Renders the Session Detail page's Map tab — the design's full-tab route view. Composition:
BigMap— large SVG route with start / end / hotspot markers.Hotspots(left) +TripStats(right).Hotspot detection runs once per session via
useMemosince the walk is O(n) over the row data — cheap for typical drives but worth caching across tab switches.