import { MapPinIcon } from '@heroicons/react/24/outline' interface PinnedAddressParcelCardProps { label: string lat: number lng: number onBack: () => void } /** * Right-rail panel shown in the local satellite view. Stubbed for now — the * real parcel record (owner, parcel number, appraised value, tax class) comes * from a future /api/parcels/lookup endpoint backed by bronze.bronze_addresses. */ export default function PinnedAddressParcelCard({ label, lat, lng, onBack, }: PinnedAddressParcelCardProps) { return (
Pinned address
{label}
{lat.toFixed(5)}, {lng.toFixed(5)}

Parcel lookup against bronze.bronze_addresses not yet wired up. Fields will populate once the staging model and API route land.

) } function ParcelFieldStub({ label }: { label: string }) { return (
{label}
) }