Machine-readable page content
Canonical: https://semiotic.nteract.io/playground/choropleth-map
Choropleth Map Playground
Experiment with ChoroplethMap props on a real world map. The map uses built-in Natural Earth 110m data from world-atlas, joined to country statistics via mergeData. Try different color schemes, projections, and datasets.
Interaction
Generated Code
The link restores this exact configuration; the config is a portable ChartConfig artifact.
JSX
import { ChoroplethMap } from "semiotic" const data = // Resolve built-in world map, join GDP data by ISO numeric ID const world = await resolveReferenceGeography("world-110m") const areas = mergeData(world, gdpData, { featureKey: "id", dataKey: "id" }) <ChoroplethMap data={data} />