├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── karma.conf.js ├── package.json ├── publish-npm.sh ├── rollup.config.js └── src ├── assets ├── tile-opentin.terrain ├── tile-with-extensions.terrain └── tile-with-metadata-extension.terrain ├── index.js ├── index.test.js └── test-utils.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/package.json -------------------------------------------------------------------------------- /publish-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/publish-npm.sh -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/assets/tile-opentin.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/src/assets/tile-opentin.terrain -------------------------------------------------------------------------------- /src/assets/tile-with-extensions.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/src/assets/tile-with-extensions.terrain -------------------------------------------------------------------------------- /src/assets/tile-with-metadata-extension.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/src/assets/tile-with-metadata-extension.terrain -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/quantized-mesh-decoder/HEAD/src/test-utils.js --------------------------------------------------------------------------------