├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── main.js ├── package.json ├── supertiler.js └── test ├── places.geojson └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/index.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/package.json -------------------------------------------------------------------------------- /supertiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/supertiler.js -------------------------------------------------------------------------------- /test/places.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/test/places.geojson -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisLoer/supertiler/HEAD/test/test.js --------------------------------------------------------------------------------