React Simple Maps
react-simple-maps
An svg map chart component built with and for React
Charts
react
maps
charts
worldmap
usa
d3-geo
react-simple-maps
javascript
npm
frontend
Stars
3.3k
Weekly
883k
Open issues
190
Bundle
~25 kB
Installation
npm install react-simple-mapsCode example
import { SimpleMaps } from "react-simple-maps";
const data = [
{ name: "Jan", value: 12 },
{ name: "Feb", value: 18 },
];
export function Example() {
return (
<SimpleMaps data={data} width={420} height={240}>
{/* series / axes from React Simple Maps */}
</SimpleMaps>
);
}Pros & cons
Pros
- Actively maintained by Richard Zimerman
- 883k weekly downloads. Battle tested
- MIT licensed
Considerations
- Adds roughly ~25 kB to your bundle
- Needs client-only rendering in SSR frameworks
- Not supported in React Native
- 190 open issues on GitHub