├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── bower.json ├── dist └── choropleth.js ├── examples ├── basic │ ├── crimes_by_district.geojson │ ├── demo.js │ └── index.html ├── computed_values │ ├── demo.js │ └── index.html ├── fetch_join │ ├── demo.js │ └── index.html └── legend │ ├── demo.js │ └── index.html ├── package.json ├── src └── choropleth.js ├── test └── choropleth.test.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.swp 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/bower.json -------------------------------------------------------------------------------- /dist/choropleth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/dist/choropleth.js -------------------------------------------------------------------------------- /examples/basic/crimes_by_district.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/basic/crimes_by_district.geojson -------------------------------------------------------------------------------- /examples/basic/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/basic/demo.js -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/basic/index.html -------------------------------------------------------------------------------- /examples/computed_values/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/computed_values/demo.js -------------------------------------------------------------------------------- /examples/computed_values/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/computed_values/index.html -------------------------------------------------------------------------------- /examples/fetch_join/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/fetch_join/demo.js -------------------------------------------------------------------------------- /examples/fetch_join/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/fetch_join/index.html -------------------------------------------------------------------------------- /examples/legend/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/legend/demo.js -------------------------------------------------------------------------------- /examples/legend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/examples/legend/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/package.json -------------------------------------------------------------------------------- /src/choropleth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/src/choropleth.js -------------------------------------------------------------------------------- /test/choropleth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/test/choropleth.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwis/leaflet-choropleth/HEAD/webpack.config.js --------------------------------------------------------------------------------