├── .github ├── remark.yaml └── workflows │ ├── publish.yaml │ └── test.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── collection.json └── item.json ├── json-schema └── schema.json ├── package.json └── wms.md /.github/remark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/.github/remark.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/README.md -------------------------------------------------------------------------------- /examples/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/examples/collection.json -------------------------------------------------------------------------------- /examples/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/examples/item.json -------------------------------------------------------------------------------- /json-schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/json-schema/schema.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/package.json -------------------------------------------------------------------------------- /wms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stac-extensions/web-map-links/HEAD/wms.md --------------------------------------------------------------------------------