├── .gitignore ├── .npmignore ├── README.md ├── css └── react-d3-map-choropleth.css ├── example ├── canner.js ├── choropleth.html ├── data │ ├── 110m_countries.geojson │ ├── population.json │ ├── states.json │ ├── twTown1982.topo.json │ ├── uk.json │ ├── unemployment.tsv │ ├── us.json │ └── world-50m.json ├── img │ ├── twpopulation-tile.png │ ├── twpopulation.png │ └── us.png ├── layout.hbs ├── map.html ├── src │ ├── choropleth.jsx │ ├── css │ │ ├── choropleth.css │ │ └── twpopulation.css │ ├── map.jsx │ └── twpopulation.jsx └── twpopulation.html ├── package.json ├── src ├── choropleth.jsx ├── index.jsx ├── map.jsx └── mapChoropleth.jsx ├── webpack.config.js └── webpack.prod.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | example 3 | __tests__ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/README.md -------------------------------------------------------------------------------- /css/react-d3-map-choropleth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/css/react-d3-map-choropleth.css -------------------------------------------------------------------------------- /example/canner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/canner.js -------------------------------------------------------------------------------- /example/choropleth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/choropleth.html -------------------------------------------------------------------------------- /example/data/110m_countries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/110m_countries.geojson -------------------------------------------------------------------------------- /example/data/population.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/population.json -------------------------------------------------------------------------------- /example/data/states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/states.json -------------------------------------------------------------------------------- /example/data/twTown1982.topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/twTown1982.topo.json -------------------------------------------------------------------------------- /example/data/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/uk.json -------------------------------------------------------------------------------- /example/data/unemployment.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/unemployment.tsv -------------------------------------------------------------------------------- /example/data/us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/us.json -------------------------------------------------------------------------------- /example/data/world-50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/data/world-50m.json -------------------------------------------------------------------------------- /example/img/twpopulation-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/img/twpopulation-tile.png -------------------------------------------------------------------------------- /example/img/twpopulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/img/twpopulation.png -------------------------------------------------------------------------------- /example/img/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/img/us.png -------------------------------------------------------------------------------- /example/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/layout.hbs -------------------------------------------------------------------------------- /example/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/map.html -------------------------------------------------------------------------------- /example/src/choropleth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/src/choropleth.jsx -------------------------------------------------------------------------------- /example/src/css/choropleth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/src/css/choropleth.css -------------------------------------------------------------------------------- /example/src/css/twpopulation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/src/css/twpopulation.css -------------------------------------------------------------------------------- /example/src/map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/src/map.jsx -------------------------------------------------------------------------------- /example/src/twpopulation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/src/twpopulation.jsx -------------------------------------------------------------------------------- /example/twpopulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/example/twpopulation.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/package.json -------------------------------------------------------------------------------- /src/choropleth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/src/choropleth.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/src/map.jsx -------------------------------------------------------------------------------- /src/mapChoropleth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/src/mapChoropleth.jsx -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-d3/react-d3-map-choropleth/HEAD/webpack.prod.config.js --------------------------------------------------------------------------------