├── .eslintrc ├── .gitignore ├── API.md ├── CHANGELOG.md ├── CODEOWNERS ├── LICENCE ├── README.md ├── circle.yml ├── dist ├── mapbox-gl-compare.css └── mapbox-gl-compare.js ├── example ├── index.html └── index.js ├── index.js ├── package.json ├── style.css └── test └── index.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | example/style.css 3 | .idea/ 4 | -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/API.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @tristen 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/circle.yml -------------------------------------------------------------------------------- /dist/mapbox-gl-compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/dist/mapbox-gl-compare.css -------------------------------------------------------------------------------- /dist/mapbox-gl-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/dist/mapbox-gl-compare.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/example/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/style.css -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-compare/HEAD/test/index.js --------------------------------------------------------------------------------