Live web app

World’s Eye View

Around 27,700 public webcams, stitched onto a single satellite map as live thumbnails. Zoom out and you see the notable ones — volcanoes, harbours, landmark city streets. Zoom in and a city fills with windows. Click any camera to watch it full size, or send several to a multicam wall and watch them together. Because every frame is real and refreshes on its own schedule, the map drifts through the day with the world: you can watch dawn cross a continent, or find a city already dark hours before its neighbour.

Open cams.corticorp.com Back to Projects
Continental view
World's Eye View at continental zoom over North America, live webcam thumbnails scattered across a satellite map
Alaska — volcano cams
Alaska Volcano Observatory cameras strung along the Aleutian arc, some in daylight and some still dark
City view — Tampa Bay at night
Dozens of live traffic camera thumbnails covering Tampa Bay at night, headlights and street lighting visible in each

What it does

A map made of windows

Thumbnails, not pins

Every camera draws as its own live frame, sized in proportion to how notable it is and how far you’ve zoomed in. The map stays a map — cameras never carpet it.

You can see the time of day

Frames refresh on each camera’s own cadence, so the wall of thumbnails darkens and brightens with real daylight rather than sitting frozen.

Multicam wall

Send any camera to a grid that arranges itself into a rectangle and resizes as you add or remove feeds. Your wall is remembered between visits.

Layers you can actually use

Filter by what you’re looking at (volcanoes, harbours, roads) or by who runs it — so “only the Florida DOT cameras” is a single click.

Next.js 16 Leaflet Esri satellite imagery sharp No database

Sources

Where the cameras come from

Every camera is published openly by the agency that operates it. Nothing is scraped from a closed system, and no feed here requires a paid key.

SourceCamerasCoverage
511 traveler information ~21,000 14 US states and 8 Canadian provinces and territories — Florida and Georgia are the two largest single feeds
Caltrans CCTV~3,400California highways
DriveBC~1,030British Columbia — runs its own software rather than the shared 511 platform
Fintraffic~810Finland — far enough north that part of it sits in polar night in midwinter
Transport for London~780JamCams across Greater London
NZ Transport Agency ~260 New Zealand — the only southern-hemisphere source, which is what makes the day/night line read correctly on a world view
USGS Alaska Volcano Observatory 64 Active volcanoes and the communities downwind of them
LTA Singapore8Expressway cameras — small, but the only Asian coverage

Closer look

Two things worth clicking

Under the hood

How it stays fast

Twenty-seven thousand cameras will not fit on a screen, so the server decides who gets a slot: it projects every candidate into screen pixels at your current zoom, drops them into thumbnail-sized grid cells, and keeps the most interesting camera in each. Zooming in shrinks the ground each cell covers, so the highway cameras that lost to a volcano at country scale reappear on their own once there’s room.

Frames are fetched and downscaled server-side — roughly 6KB each instead of 120KB, which is the difference between a map that loads and one that doesn’t. That also means every image arrives from a single origin, so the site’s content-security policy never has to trust the dozens of third-party hosts the cameras actually live on. Cameras that stop responding, or that answer with a “temporarily unavailable” placeholder card, are detected and dropped rather than left as dead tiles.

There is no database and no scheduled job. The whole catalogue is rebuilt in memory on boot and refreshed per source in the background.