├── .travis.yml ├── README.md ├── bundle.js ├── index.html ├── index.js ├── lib ├── Leaflet.VectorGrid.Leveldb.js └── VectorTileIndex.js ├── package.json ├── screenshot.png └── test ├── fixtures └── polygon.json └── vti.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/README.md -------------------------------------------------------------------------------- /bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/bundle.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/index.js -------------------------------------------------------------------------------- /lib/Leaflet.VectorGrid.Leveldb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/lib/Leaflet.VectorGrid.Leveldb.js -------------------------------------------------------------------------------- /lib/VectorTileIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/lib/VectorTileIndex.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/fixtures/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/test/fixtures/polygon.json -------------------------------------------------------------------------------- /test/vti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickpeihl/offline-maps-playground/HEAD/test/vti.js --------------------------------------------------------------------------------