Generated from Natural Earth. One <path> per country, id-keyed by
lowercase ISO 3166-1 alpha-2 code. Drop it into a choropleth, a heatmap,
or any SVG-based map UI.
Live render of dist/world.svg. Hover a country.
Simplified 1:110m geometry keeps the file lightweight, not a multi-megabyte download.
Every path is keyed by lowercase ISO 3166-1 alpha-2 code, so joining your data is a lookup, not a parsing project.
Built straight from Natural Earth (public domain). Released under CC BY 4.0: use it, including commercially, with attribution.
<object type="image/svg+xml" data="world.svg"></object>
<style>
#ca { fill: steelblue; } /* target a country by its id */
</style>
Or generate your own copy from source:
git clone https://github.com/melenaos/Menelabs.VectorAtlas.git
cd Menelabs.VectorAtlas
npm install
npm run generate
Full usage patterns, including a data-driven choropleth heatmap and a clickable country selector, are live on the examples page.