├── .eslintrc.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── examples ├── demo.html ├── demo.js └── style.css ├── package.json ├── renovate.json ├── src ├── MapLibreLayer.ts ├── MapLibreLayerRenderer.ts ├── getMapLibreAttributions.ts └── index.ts ├── tsconfig.json └── typedoc.json /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | bracketSpacing: false 2 | singleQuote: true 3 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/examples/demo.html -------------------------------------------------------------------------------- /examples/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/examples/demo.js -------------------------------------------------------------------------------- /examples/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/examples/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/renovate.json -------------------------------------------------------------------------------- /src/MapLibreLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/src/MapLibreLayer.ts -------------------------------------------------------------------------------- /src/MapLibreLayerRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/src/MapLibreLayerRenderer.ts -------------------------------------------------------------------------------- /src/getMapLibreAttributions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/src/getMapLibreAttributions.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoblocks/ol-maplibre-layer/HEAD/typedoc.json --------------------------------------------------------------------------------