├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── basic │ └── index.html ├── custom-style │ └── index.html ├── gps │ └── index.html ├── poi │ └── index.html └── url-style │ └── index.html ├── index.html ├── index.js ├── package.json └── src ├── component.js ├── entity.js └── map-style.json /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.json 2 | /lib/ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/examples/basic/index.html -------------------------------------------------------------------------------- /examples/custom-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/examples/custom-style/index.html -------------------------------------------------------------------------------- /examples/gps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/examples/gps/index.html -------------------------------------------------------------------------------- /examples/poi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/examples/poi/index.html -------------------------------------------------------------------------------- /examples/url-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/examples/url-style/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/package.json -------------------------------------------------------------------------------- /src/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/src/component.js -------------------------------------------------------------------------------- /src/entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/src/entity.js -------------------------------------------------------------------------------- /src/map-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesstelford/aframe-map/HEAD/src/map-style.json --------------------------------------------------------------------------------