Files
ulweb/web/components/map/google/GoogleJobMap.tsx
ulhub b7479fa68f Show point details on marker click
Clicking a point on the job map opens an InfoWindow with its full
telemetry readout (utility, fix, recorded time, depth, frequency,
current, signal, gain, locate mode, phase, compass, distortion, GPS
accuracy/satellites/HDOP, altitude, coordinates) — only the fields the
point actually has, since instruments vary in what they report.
Clicking empty map area dismisses it.

MapPoint gained altitude/hAccuracy/vAccuracy/satellites/hdop/phaseDeg,
which the backend already returned but the frontend type omitted.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 16:28:07 +00:00

159 lines
4.9 KiB
TypeScript

/// <reference types="google.maps" />
import { APIProvider, InfoWindow, Map as GoogleMap, useMap } from '@vis.gl/react-google-maps';
import { useEffect, useRef, useState } from 'react';
import { JobMapProps, MapPoint, pointDetailRows, UTILITY_COLORS } from '../types';
const API_KEY = process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY || '';
const DEFAULT_CENTER = { lat: 39.5, lng: -98.35 }; // continental US
const DEFAULT_ZOOM = 4;
function colorFor(utilityType: string): string {
return UTILITY_COLORS[utilityType] ?? UTILITY_COLORS.UNKNOWN;
}
function orderKey(p: MapPoint): number {
return p.sequence ?? new Date(p.recordedAt).getTime();
}
// Draws points as colored circles plus one polyline per utility run.
// Imperative overlays (google.maps.Marker/Polyline) are used because
// @vis.gl/react-google-maps has no polyline component.
function PointsLayer({
points,
fitBounds,
onSelect,
}: {
points: MapPoint[];
fitBounds: boolean;
onSelect: (point: MapPoint) => void;
}) {
const map = useMap();
const overlaysRef = useRef<{ setMap: (m: google.maps.Map | null) => void }[]>([]);
const fittedCountRef = useRef(0);
const onSelectRef = useRef(onSelect);
onSelectRef.current = onSelect;
useEffect(() => {
if (!map) {
return;
}
overlaysRef.current.forEach((o) => o.setMap(null));
overlaysRef.current = [];
if (points.length === 0) {
return;
}
const byUtility = new Map<string, MapPoint[]>();
for (const p of points) {
const group = byUtility.get(p.utilityType) ?? [];
group.push(p);
byUtility.set(p.utilityType, group);
}
for (const [utility, group] of byUtility) {
const sorted = [...group].sort((a, b) => orderKey(a) - orderKey(b));
const color = colorFor(utility);
const line = new google.maps.Polyline({
path: sorted.map((p) => ({ lat: p.lat, lng: p.lng })),
strokeColor: color,
strokeOpacity: 0.8,
strokeWeight: 3,
map,
});
overlaysRef.current.push(line);
for (const p of sorted) {
const marker = new google.maps.Marker({
position: { lat: p.lat, lng: p.lng },
map,
cursor: 'pointer',
icon: {
path: google.maps.SymbolPath.CIRCLE,
scale: 5,
fillColor: color,
fillOpacity: 1,
strokeColor: '#ffffff',
strokeWeight: 1.5,
},
});
marker.addListener('click', () => onSelectRef.current(p));
overlaysRef.current.push(marker);
}
}
if (fitBounds && points.length !== fittedCountRef.current) {
fittedCountRef.current = points.length;
const bounds = new google.maps.LatLngBounds();
points.forEach((p) => bounds.extend({ lat: p.lat, lng: p.lng }));
map.fitBounds(bounds, 48);
}
}, [map, points, fitBounds]);
return null;
}
function PointDetails({ point, onClose }: { point: MapPoint; onClose: () => void }) {
return (
<InfoWindow position={{ lat: point.lat, lng: point.lng }} onCloseClick={onClose}>
<div style={{ fontFamily: 'sans-serif', minWidth: 200 }}>
<table style={{ borderCollapse: 'collapse' }}>
<tbody>
{pointDetailRows(point).map(([label, value]) => (
<tr key={label}>
<td style={{ color: '#666', paddingRight: '0.75rem', whiteSpace: 'nowrap' }}>{label}</td>
<td style={{ fontWeight: 600 }}>{value}</td>
</tr>
))}
</tbody>
</table>
</div>
</InfoWindow>
);
}
export default function GoogleJobMap({ points, fitBounds = true, heightPx = 480 }: JobMapProps) {
const [selected, setSelected] = useState<MapPoint | null>(null);
if (!API_KEY) {
return (
<div
style={{
height: heightPx,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
border: '1px dashed #999',
borderRadius: 8,
color: '#666',
}}
>
Set NEXT_PUBLIC_GOOGLE_MAPS_API_KEY in .env to enable the map.
</div>
);
}
// A point can be re-fetched (new object identity) between renders; keep the
// InfoWindow anchored to the latest copy of the same point by id.
const selectedCurrent = selected ? (points.find((p) => p.id === selected.id) ?? selected) : null;
return (
<div style={{ height: heightPx, borderRadius: 8, overflow: 'hidden' }}>
<APIProvider apiKey={API_KEY}>
<GoogleMap
defaultCenter={points[0] ? { lat: points[0].lat, lng: points[0].lng } : DEFAULT_CENTER}
defaultZoom={points[0] ? 18 : DEFAULT_ZOOM}
mapTypeId="hybrid"
gestureHandling="greedy"
onClick={() => setSelected(null)}
>
<PointsLayer points={points} fitBounds={fitBounds} onSelect={setSelected} />
{selectedCurrent && <PointDetails point={selectedCurrent} onClose={() => setSelected(null)} />}
</GoogleMap>
</APIProvider>
</div>
);
}