VectorAtlas Free · CC BY 4.0

An SVG world map that just works

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.

Loading map…

Live render of dist/world.svg. Hover a country.

Why this exists

Actually small

Simplified 1:110m geometry keeps the file lightweight, not a multi-megabyte download.

Real IDs, not guesswork

Every path is keyed by lowercase ISO 3166-1 alpha-2 code, so joining your data is a lookup, not a parsing project.

No linkware surprises

Built straight from Natural Earth (public domain). Released under CC BY 4.0: use it, including commercially, with attribution.

Quick start

<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.