├── .gitignore ├── CHANGELOG.md ├── README.md ├── index.js ├── lib └── stylesheet.xml ├── package.json └── test ├── fixtures ├── polygons.4.4.5.geojson ├── polygons.4.4.5.pbf ├── polygons.4.4.5.utf ├── polygons.geojson └── polygons.png ├── out ├── polygons.4.4.5.pbf ├── polygons.4.4.5.utf └── polygons.png └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/index.js -------------------------------------------------------------------------------- /lib/stylesheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/lib/stylesheet.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/polygons.4.4.5.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/fixtures/polygons.4.4.5.geojson -------------------------------------------------------------------------------- /test/fixtures/polygons.4.4.5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/fixtures/polygons.4.4.5.pbf -------------------------------------------------------------------------------- /test/fixtures/polygons.4.4.5.utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/fixtures/polygons.4.4.5.utf -------------------------------------------------------------------------------- /test/fixtures/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/fixtures/polygons.geojson -------------------------------------------------------------------------------- /test/fixtures/polygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/fixtures/polygons.png -------------------------------------------------------------------------------- /test/out/polygons.4.4.5.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/out/polygons.4.4.5.pbf -------------------------------------------------------------------------------- /test/out/polygons.4.4.5.utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/out/polygons.4.4.5.utf -------------------------------------------------------------------------------- /test/out/polygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/out/polygons.png -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelm/mapnik-tiles/HEAD/test/test.js --------------------------------------------------------------------------------