├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── pages.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── PUBLISHING.md ├── README.md ├── eslint.config.js ├── examples ├── _template.html ├── apply-layergroup.js ├── data │ ├── circles-style.json │ ├── geojson-inline.json │ ├── geojson-wfs.json │ ├── geojson-wms.json │ ├── geojson.json │ ├── polygons-style.json │ ├── protomaps-dark-style.json │ ├── sprites-bw.json │ ├── sprites-bw.png │ ├── sprites-bw@2x.json │ ├── sprites-bw@2x.png │ ├── sprites.json │ ├── sprites.png │ ├── sprites@2x.json │ ├── sprites@2x.png │ ├── states.geojson │ ├── states.json │ ├── tilejson.json │ └── wms.json ├── esri-4326.js ├── esri-transformrequest.js ├── geojson-featurestate.js ├── geojson-inline.js ├── geojson-layer.js ├── geojson-wfs.js ├── geojson.js ├── index.html ├── mapbox.js ├── maptiler-hillshading.js ├── openmaptiles-layer.js ├── openmaptiles.js ├── pmtiles.js ├── sdf-sprites.js ├── stylefunction.js ├── terrarium-hillshading.js ├── tilejson-vectortile.js ├── tilejson.js ├── versatiles.js └── wms.js ├── package.json ├── rollup.config.js ├── src ├── MapboxVectorLayer.js ├── apply.js ├── index.js ├── mapbox.js ├── shaders.js ├── stylefunction.js ├── text.js └── util.js ├── test ├── MapboxVectorLayer.test.js ├── apply.test.js ├── applyStyle.test.js ├── finalizeLayer.test.js ├── fixtures │ ├── background-none.json │ ├── background.json │ ├── geography-class.json │ ├── geojson-inline.json │ ├── geojson-wfs.json │ ├── geojson.json │ ├── hospital.png │ ├── hot-osm │ │ ├── hot-osm.json │ │ ├── osm.json │ │ ├── osm_tegola_spritesheet.json │ │ ├── osm_tegola_spritesheet.png │ │ ├── osm_tegola_spritesheet@2x.json │ │ └── osm_tegola_spritesheet@2x.png │ ├── osm-liberty │ │ ├── osm-liberty.json │ │ ├── osm-liberty.png │ │ ├── osm-liberty@2x.json │ │ ├── osm-liberty@2x.png │ │ ├── style.json │ │ └── tiles.json │ ├── raster-dem.json │ ├── response.json │ ├── sprites.json │ ├── sprites.png │ ├── sprites@2x.json │ ├── sprites@2x.png │ ├── states.geojson │ ├── states.json │ ├── style-empty-sprite.json │ ├── style-invalid-sprite-url.json │ ├── style-invalid-version.json │ ├── style-missing-sprite.json │ ├── style-with-multiple-background-layers.json │ ├── tilejson-mapboxvector.json │ ├── tilejson.json │ ├── tilejson.raster.json │ └── wms.json ├── index_test.cjs ├── karma.conf.cjs ├── mapbox.test.js ├── stylefunction-utils.test.js ├── stylefunction.test.js ├── test.html ├── text.test.js └── util.test.js ├── tsconfig-build.json ├── tsconfig-typecheck.json ├── tsconfig.json ├── typedoc.json └── webpack.config.examples.cjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | _site 4 | coverage 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/LICENSE -------------------------------------------------------------------------------- /PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/PUBLISHING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/eslint.config.js -------------------------------------------------------------------------------- /examples/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/_template.html -------------------------------------------------------------------------------- /examples/apply-layergroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/apply-layergroup.js -------------------------------------------------------------------------------- /examples/data/circles-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/circles-style.json -------------------------------------------------------------------------------- /examples/data/geojson-inline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/geojson-inline.json -------------------------------------------------------------------------------- /examples/data/geojson-wfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/geojson-wfs.json -------------------------------------------------------------------------------- /examples/data/geojson-wms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/geojson-wms.json -------------------------------------------------------------------------------- /examples/data/geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/geojson.json -------------------------------------------------------------------------------- /examples/data/polygons-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/polygons-style.json -------------------------------------------------------------------------------- /examples/data/protomaps-dark-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/protomaps-dark-style.json -------------------------------------------------------------------------------- /examples/data/sprites-bw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites-bw.json -------------------------------------------------------------------------------- /examples/data/sprites-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites-bw.png -------------------------------------------------------------------------------- /examples/data/sprites-bw@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites-bw@2x.json -------------------------------------------------------------------------------- /examples/data/sprites-bw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites-bw@2x.png -------------------------------------------------------------------------------- /examples/data/sprites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites.json -------------------------------------------------------------------------------- /examples/data/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites.png -------------------------------------------------------------------------------- /examples/data/sprites@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites@2x.json -------------------------------------------------------------------------------- /examples/data/sprites@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/sprites@2x.png -------------------------------------------------------------------------------- /examples/data/states.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/states.geojson -------------------------------------------------------------------------------- /examples/data/states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/states.json -------------------------------------------------------------------------------- /examples/data/tilejson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/tilejson.json -------------------------------------------------------------------------------- /examples/data/wms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/data/wms.json -------------------------------------------------------------------------------- /examples/esri-4326.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/esri-4326.js -------------------------------------------------------------------------------- /examples/esri-transformrequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/esri-transformrequest.js -------------------------------------------------------------------------------- /examples/geojson-featurestate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/geojson-featurestate.js -------------------------------------------------------------------------------- /examples/geojson-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/geojson-inline.js -------------------------------------------------------------------------------- /examples/geojson-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/geojson-layer.js -------------------------------------------------------------------------------- /examples/geojson-wfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/geojson-wfs.js -------------------------------------------------------------------------------- /examples/geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/geojson.js -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/mapbox.js -------------------------------------------------------------------------------- /examples/maptiler-hillshading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/maptiler-hillshading.js -------------------------------------------------------------------------------- /examples/openmaptiles-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/openmaptiles-layer.js -------------------------------------------------------------------------------- /examples/openmaptiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/openmaptiles.js -------------------------------------------------------------------------------- /examples/pmtiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/pmtiles.js -------------------------------------------------------------------------------- /examples/sdf-sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/sdf-sprites.js -------------------------------------------------------------------------------- /examples/stylefunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/stylefunction.js -------------------------------------------------------------------------------- /examples/terrarium-hillshading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/terrarium-hillshading.js -------------------------------------------------------------------------------- /examples/tilejson-vectortile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/tilejson-vectortile.js -------------------------------------------------------------------------------- /examples/tilejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/tilejson.js -------------------------------------------------------------------------------- /examples/versatiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/versatiles.js -------------------------------------------------------------------------------- /examples/wms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/examples/wms.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/MapboxVectorLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/MapboxVectorLayer.js -------------------------------------------------------------------------------- /src/apply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/apply.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/mapbox.js -------------------------------------------------------------------------------- /src/shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/shaders.js -------------------------------------------------------------------------------- /src/stylefunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/stylefunction.js -------------------------------------------------------------------------------- /src/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/text.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/src/util.js -------------------------------------------------------------------------------- /test/MapboxVectorLayer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/MapboxVectorLayer.test.js -------------------------------------------------------------------------------- /test/apply.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/apply.test.js -------------------------------------------------------------------------------- /test/applyStyle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/applyStyle.test.js -------------------------------------------------------------------------------- /test/finalizeLayer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/finalizeLayer.test.js -------------------------------------------------------------------------------- /test/fixtures/background-none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/background-none.json -------------------------------------------------------------------------------- /test/fixtures/background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/background.json -------------------------------------------------------------------------------- /test/fixtures/geography-class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/geography-class.json -------------------------------------------------------------------------------- /test/fixtures/geojson-inline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/geojson-inline.json -------------------------------------------------------------------------------- /test/fixtures/geojson-wfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/geojson-wfs.json -------------------------------------------------------------------------------- /test/fixtures/geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/geojson.json -------------------------------------------------------------------------------- /test/fixtures/hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/hospital.png -------------------------------------------------------------------------------- /test/fixtures/hot-osm/hot-osm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/hot-osm/hot-osm.json -------------------------------------------------------------------------------- /test/fixtures/hot-osm/osm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/hot-osm/osm.json -------------------------------------------------------------------------------- /test/fixtures/hot-osm/osm_tegola_spritesheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/hot-osm/osm_tegola_spritesheet.json -------------------------------------------------------------------------------- /test/fixtures/hot-osm/osm_tegola_spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/hot-osm/osm_tegola_spritesheet.png -------------------------------------------------------------------------------- /test/fixtures/hot-osm/osm_tegola_spritesheet@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/hot-osm/osm_tegola_spritesheet@2x.json -------------------------------------------------------------------------------- /test/fixtures/hot-osm/osm_tegola_spritesheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/hot-osm/osm_tegola_spritesheet@2x.png -------------------------------------------------------------------------------- /test/fixtures/osm-liberty/osm-liberty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/osm-liberty/osm-liberty.json -------------------------------------------------------------------------------- /test/fixtures/osm-liberty/osm-liberty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/osm-liberty/osm-liberty.png -------------------------------------------------------------------------------- /test/fixtures/osm-liberty/osm-liberty@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/osm-liberty/osm-liberty@2x.json -------------------------------------------------------------------------------- /test/fixtures/osm-liberty/osm-liberty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/osm-liberty/osm-liberty@2x.png -------------------------------------------------------------------------------- /test/fixtures/osm-liberty/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/osm-liberty/style.json -------------------------------------------------------------------------------- /test/fixtures/osm-liberty/tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/osm-liberty/tiles.json -------------------------------------------------------------------------------- /test/fixtures/raster-dem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/raster-dem.json -------------------------------------------------------------------------------- /test/fixtures/response.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/fixtures/sprites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/sprites.json -------------------------------------------------------------------------------- /test/fixtures/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/sprites.png -------------------------------------------------------------------------------- /test/fixtures/sprites@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/sprites@2x.json -------------------------------------------------------------------------------- /test/fixtures/sprites@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/sprites@2x.png -------------------------------------------------------------------------------- /test/fixtures/states.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/states.geojson -------------------------------------------------------------------------------- /test/fixtures/states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/states.json -------------------------------------------------------------------------------- /test/fixtures/style-empty-sprite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/style-empty-sprite.json -------------------------------------------------------------------------------- /test/fixtures/style-invalid-sprite-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/style-invalid-sprite-url.json -------------------------------------------------------------------------------- /test/fixtures/style-invalid-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/style-invalid-version.json -------------------------------------------------------------------------------- /test/fixtures/style-missing-sprite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/style-missing-sprite.json -------------------------------------------------------------------------------- /test/fixtures/style-with-multiple-background-layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/style-with-multiple-background-layers.json -------------------------------------------------------------------------------- /test/fixtures/tilejson-mapboxvector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/tilejson-mapboxvector.json -------------------------------------------------------------------------------- /test/fixtures/tilejson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/tilejson.json -------------------------------------------------------------------------------- /test/fixtures/tilejson.raster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/tilejson.raster.json -------------------------------------------------------------------------------- /test/fixtures/wms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/fixtures/wms.json -------------------------------------------------------------------------------- /test/index_test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/index_test.cjs -------------------------------------------------------------------------------- /test/karma.conf.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/karma.conf.cjs -------------------------------------------------------------------------------- /test/mapbox.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/mapbox.test.js -------------------------------------------------------------------------------- /test/stylefunction-utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/stylefunction-utils.test.js -------------------------------------------------------------------------------- /test/stylefunction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/stylefunction.test.js -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/test.html -------------------------------------------------------------------------------- /test/text.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/text.test.js -------------------------------------------------------------------------------- /test/util.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/test/util.test.js -------------------------------------------------------------------------------- /tsconfig-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/tsconfig-build.json -------------------------------------------------------------------------------- /tsconfig-typecheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/tsconfig-typecheck.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/typedoc.json -------------------------------------------------------------------------------- /webpack.config.examples.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlayers/ol-mapbox-style/HEAD/webpack.config.examples.cjs --------------------------------------------------------------------------------