The official map3D ecosystem
map3D plugins
Alban Pasquelin's map3D plugins form a pnpm monorepo where each geographic data source — IGN, BD TOPO, Géoplateforme, webcams, Windy — becomes an independent package.
import { TypeScript, React19, Threejs, pnpm } from '@/stack'
export function registerPlugins(map: Map3D): GeographicSources {
One plugin, one package. You install the data you need — French land registry, webcams, weather — and nothing else.
import ign from '@pasquelin/map3d-plugin-ign'
This is the proof a library is well split: if capabilities can be added from the outside without touching it, the boundaries were drawn correctly.
map.use(ign, bdTopo, geoplateforme, webcams, windy)
}