├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── API.md ├── CHANGELOG.md ├── LICENCE ├── README.md ├── dist ├── maplibre-gl-compare.css └── maplibre-gl-compare.js ├── example ├── index.html └── index.js ├── index.js ├── package.json ├── style.css └── test └── index.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | example/style.css 3 | .idea/ 4 | -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/API.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/README.md -------------------------------------------------------------------------------- /dist/maplibre-gl-compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/dist/maplibre-gl-compare.css -------------------------------------------------------------------------------- /dist/maplibre-gl-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/dist/maplibre-gl-compare.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/example/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/style.css -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-gl-compare/HEAD/test/index.js --------------------------------------------------------------------------------