
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
Automatic Identification System (AIS) vessel tracking on free OpenStreetMap/Esri tiles — no API key. Container ships, tankers, shipping lanes, and anchorage status.
Also available for Vue ->$pnpm dlx shadcn@latest add https://uipkge.dev/r/react/leaflet-maritime-vessel-map.json$npx shadcn@latest add https://uipkge.dev/r/react/leaflet-maritime-vessel-map.json$yarn dlx shadcn@latest add https://uipkge.dev/r/react/leaflet-maritime-vessel-map.json$bunx shadcn@latest add https://uipkge.dev/r/react/leaflet-maritime-vessel-map.jsonnpx shadcn@latest add @uipkge-react/leaflet-maritime-vessel-mapInstalls to:components/blocks/| Name | Type / Values | Default | Required |
|---|---|---|---|
vessels | Vessel[] | — | optional |
Type aliases exported from this item's source. Use these to shape the data you pass in.
Vesselinterface Vessel {
mmsi: string
name: string
flag: string
type: VesselType
/** [lng, lat] — Mapbox order. */
coords: [number, number]
heading: number
speedKnots: number
draught: string
dest: string
eta: string
status: VesselStatus
}'use client'
import * as React from 'react'
import { cn } from '@/lib/utils'
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/card'
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { LeafletMap, LeafletMarker, LeafletPolyline, type LeafletMapRef } from '@/components/ui/leaflet-map'
export type VesselType = 'Container' | 'Crude Tanker' | 'Bulk Carrier' | 'Tug'
export type VesselStatus = 'Underway' | 'Moored' | 'At Anchor'
export interface Vessel {
mmsi: string
name: string
flag: string
type: VesselType
/** [lng, lat] — Mapbox order. */
coords: [number, number]
heading: number
speedKnots: number
draught: string
dest: string
eta: string
status: VesselStatus
}
export interface LeafletMaritimeVesselMapProps extends React.HTMLAttributes<HTMLDivElement> {
vessels?: Vessel[]
}
// Module-level constant: a stable reference keeps LeafletMap's center effect
// from re-firing setView on every render and cancelling flyTo animations.
const MAP_CENTER: [number, number] = [4.4, 51.9]
const DEFAULT_VESSELS: Vessel[] = [
{
mmsi: '219018442',
name: 'EVER GIVEN',
flag: 'PA',
type: 'Container',
coords: [4.04, 51.98],
heading: 95,
speedKnots: 13.8,
draught: '15.7m',
dest: 'RTM MAASVLAKTE',
eta: 'OCT 24 14:00',
status: 'Underway',
},
{
mmsi: '636019812',
name: 'NORDIC STAR',
flag: 'LR',
type: 'Crude Tanker',
coords: [4.18, 51.94],
heading: 265,
speedKnots: 0.3,
draught: '12.1m',
dest: 'EUROPOORT ANCH',
eta: 'OCT 24 08:30',
status: 'At Anchor',
},
{
mmsi: '356782000',
name: 'PACIFIC RUBY',
flag: 'SG',
type: 'Bulk Carrier',
coords: [4.33, 51.92],
heading: 100,
speedKnots: 10.6,
draught: '10.4m',
dest: 'NLRTM ECT',
eta: 'OCT 29 06:00',
status: 'Underway',
},
{
mmsi: '508111222',
name: 'HARBOR VALIANT',
flag: 'NL',
type: 'Tug',
coords: [4.47, 51.9],
heading: 180,
speedKnots: 6.4,
draught: '4.5m',
dest: 'WAALHAVEN',
eta: 'OCT 24 12:00',
status: 'Underway',
},
]
// Nieuwe Waterweg main channel (North Sea -> Waalhaven) + Maasvlakte approach lane.
const SHIPPING_LANES: [number, number][][] = [
[
[3.94, 52.0],
[4.08, 51.965],
[4.22, 51.935],
[4.36, 51.915],
[4.55, 51.9],
],
[
[3.99, 52.03],
[4.14, 51.99],
[4.28, 51.945],
[4.45, 51.905],
],
]
const PORTS: { name: string; coords: [number, number] }[] = [
{ name: 'MAASVLAKTE', coords: [3.98, 51.99] },
{ name: 'EUROPOORT', coords: [4.09, 51.95] },
{ name: 'WAALHAVEN', coords: [4.42, 51.885] },
]
export function LeafletMaritimeVesselMap({
className,
vessels = DEFAULT_VESSELS,
...props
}: LeafletMaritimeVesselMapProps) {
const [activeMmsi, setActiveMmsi] = React.useState(vessels[0]?.mmsi ?? '')
const mapRef = React.useRef<LeafletMapRef>(null)
const activeVessel = vessels.find((v) => v.mmsi === activeMmsi) ?? vessels[0]
const selectVessel = (v: Vessel) => {
setActiveMmsi(v.mmsi)
mapRef.current?.flyTo?.({ center: v.coords, zoom: 11.5, duration: 800 })
}
return (
<div
data-slot="leaflet-maritime-vessel-map"
className={cn('grid gap-4 lg:grid-cols-[1fr_320px]', className)}
{...props}
>
<div className="border-border bg-card relative h-[480px] overflow-hidden rounded-xl border">
<LeafletMap ref={mapRef} variant="dark" center={MAP_CENTER} zoom={11} className="h-full w-full">
{/* Shipping lanes */}
{SHIPPING_LANES.map((lane, i) => (
<LeafletPolyline
key={i}
lngLatPath={lane}
color="#22d3ee"
weight={2}
opacity={0.45}
dashArray="6 6"
lineCap="round"
/>
))}
{/* Port terminals */}
{PORTS.map((p) => (
<LeafletMarker key={p.name} lngLat={p.coords} anchor="center">
<div className="flex flex-col items-center">
<span className="size-2.5 rotate-45 rounded-[2px] border border-cyan-400/70 bg-cyan-500/40" />
<span className="border-border bg-card/80 text-muted-foreground mt-1 rounded border px-1 py-0.5 font-mono text-xs tracking-wider whitespace-nowrap">
{p.name}
</span>
</div>
</LeafletMarker>
))}
{/* AIS vessels */}
{vessels.map((v) => (
<LeafletMarker key={v.mmsi} lngLat={v.coords} anchor="center" onClick={() => selectVessel(v)}>
<div className="group relative flex cursor-pointer flex-col items-center">
<div
className={cn(
'flex size-7 items-center justify-center rounded-full font-bold text-cyan-400',
activeMmsi === v.mmsi ? 'bg-cyan-500/20 ring-2 ring-cyan-400' : 'bg-background/80',
)}
style={{ transform: `rotate(${v.heading}deg)` }}
>
▲
</div>
<span
className={cn(
'border-border bg-card/90 mt-1 rounded border px-1 py-0.5 font-mono text-xs font-semibold tracking-wider whitespace-nowrap shadow-xs',
activeMmsi === v.mmsi ? 'border-cyan-400/50 text-cyan-400' : 'text-foreground',
)}
>
{v.name}
</span>
</div>
</LeafletMarker>
))}
</LeafletMap>
</div>
{/* AIS Telemetry Drawer */}
<Card className="flex flex-col justify-between">
<CardHeader>
<div className="flex items-center justify-between">
<Badge variant="outline" className="font-mono text-xs">
{activeVessel.type}
</Badge>
<Badge className="border-cyan-500/20 bg-cyan-500/10 text-cyan-600 dark:text-cyan-400">
{activeVessel.status}
</Badge>
</div>
<CardTitle className="mt-2 font-mono text-lg">{activeVessel.name}</CardTitle>
<CardDescription className="font-mono text-xs">
MMSI: {activeVessel.mmsi} • Flag: {activeVessel.flag}
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="border-border bg-muted/40 grid grid-cols-2 gap-2 rounded-lg border p-2.5 font-mono text-xs">
<div>
<div className="text-muted-foreground text-xs uppercase">Speed Over Ground</div>
<div className="text-foreground text-sm font-bold">{activeVessel.speedKnots} kts</div>
</div>
<div>
<div className="text-muted-foreground text-xs uppercase">Heading</div>
<div className="text-foreground text-sm font-bold">{activeVessel.heading}°</div>
</div>
<div className="mt-2">
<div className="text-muted-foreground text-xs uppercase">Max Draught</div>
<div className="text-foreground text-sm font-bold">{activeVessel.draught}</div>
</div>
<div className="mt-2">
<div className="text-muted-foreground text-xs uppercase">Destination</div>
<div className="text-foreground truncate text-xs font-bold">{activeVessel.dest}</div>
</div>
</div>
<div className="border-border space-y-1 border-t pt-3">
<div className="text-muted-foreground mb-1 font-mono text-xs tracking-wider uppercase">
Rotterdam Approach Traffic
</div>
{vessels.map((v) => (
<button
key={v.mmsi}
type="button"
className={cn(
'flex w-full items-center justify-between rounded-md px-2 py-1 text-xs transition-colors',
activeMmsi === v.mmsi
? 'bg-accent text-accent-foreground font-semibold'
: 'hover:bg-muted text-muted-foreground',
)}
onClick={() => selectVessel(v)}
>
<span className="font-mono">{v.name}</span>
<span className="font-mono text-xs opacity-75">{v.speedKnots} kts</span>
</button>
))}
</div>
<Button
variant="outline"
size="sm"
className="w-full font-mono text-xs"
onClick={() => selectVessel(activeVessel)}
>
Center on Vessel
</Button>
</CardContent>
</Card>
</div>
)
}
export default LeafletMaritimeVesselMap
Raw manifest:https://uipkge.dev/r/react/leaflet-maritime-vessel-map.json