Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- 3D Tiles

### Changed

### Deprecated
Expand All @@ -18,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.0.0]

- Initial release for WMTS and XYZ.
- Initial release for TileJSON, WMTS and XYZ.

[Unreleased]: <https://github.com/stac-extensions/web-map-links/compare/v1.0.0...HEAD>
[1.0.0]: <https://github.com/stac-extensions/web-map-links/tree/v1.0.0>
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This document explains the Web Map Links Extension to the
It allows to provide links to web map services for visualization purposes.

The following services are supported:
- [3D Tiles](#3d-tiles)
- [OGC WMTS](#ogc-wmts)
- [TileJSON](#tilejson)
- [XYZ](#xyz)
Expand All @@ -33,6 +34,16 @@ An attribution field is not defined as part of this extension, but it is RECOMME
in the top-level object of the document via the `attribution` field as defined in
[OGC API - Commons - Part 1](http://docs.ogc.org/DRAFTS/19-072.html#landing-page).

### 3D Tiles

Links to a [3D Tiles](https://docs.ogc.org/cs/18-053r2/18-053r2.html) implementation (versions 1.x).

| Field Name | Type | Description |
| --------------- | -------------------- | ----------- |
| rel | string | **REQUIRED**. Must be set to `3d-tiles`. |
| href | string | **REQUIRED**. Link to a tileset. |
| type | string | Recommended to be set to `application/json`. |

### OGC WMTS

Links to a [OGC Web Map Tile Service](https://www.ogc.org/standards/wmts) (WMTS) implementation (versions 1.x).
Expand Down Expand Up @@ -81,7 +92,7 @@ Links to a [TileJSON](https://github.com/mapbox/tilejson-spec) document.
| ---------- | ------ | ----------- |
| rel | string | **REQUIRED**. Must be set to `tilejson`. |
| href | string | **REQUIRED**. Link to the valid TileJSON document. |
| type | string | Recommended to be set to `application/json` |
| type | string | Recommended to be set to `application/json`. |

### General

Expand Down
6 changes: 6 additions & 0 deletions examples/collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@
"rel": "tilejson",
"title": "TileJSON",
"type": "application/json"
},
{
"href": "https://storage.googleapis.com/open-cogs/planet-stac/cocabamba-peru/3d-geofox.ai/3DTiles/tileset.json",
"rel": "3d-tiles",
"title": "3D Tiles",
"type": "application/json"
}
]
}
6 changes: 6 additions & 0 deletions examples/item.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@
"rel": "tilejson",
"title": "TileJSON",
"type": "application/json"
},
{
"href": "https://storage.googleapis.com/open-cogs/planet-stac/cocabamba-peru/3d-geofox.ai/3DTiles/tileset.json",
"rel": "3d-tiles",
"title": "3D Tiles",
"type": "application/json"
}
],
"assets": {}
Expand Down
3 changes: 2 additions & 1 deletion json-schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"enum": [
"xyz",
"wmts",
"tilejson"
"tilejson",
"3d-tiles"
]
}
}
Expand Down