You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Links to a [3D Tiles](https://docs.ogc.org/cs/18-053r2/18-053r2.html) implementa
48
48
49
49
### OGC WMS
50
50
51
-
Links to a [OGC Web Map Service](https://www.ogc.org/standards/wms) (WMS) implementation (versions 1.x).
51
+
Links to a [OGC Web Map Service](https://www.ogc.org/standards/wms) (WMS) implementation (versions 1.3.0).
52
52
Only (tiled) "Basic WMS" is supported at this time.
53
53
54
54
| Field Name | Type | Description |
@@ -59,6 +59,14 @@ Only (tiled) "Basic WMS" is supported at this time.
59
59
| wms:layers|\[string]|**REQUIRED**. The layers to show on the map by default. Can't be empty. |
60
60
| wms:styles|\[string]| The styles to show on the map by default. If not provided or empty, an empty string will be used for the query parameter. |
61
61
| wms:dimensions| Map\<string, string> | Any additional dimension parameters to add to the request as query parameters (e.g. the dimensions `TIME` or `ELEVATION`). |
62
+
| wms:transparent| boolean | Sets whether the layers should be rendered transparent or not. Default: `false`|
63
+
64
+
If you provide multiple array elements in `wms:layers` (e.g. `["layerA", "layerB"]`),
65
+
each should occur in a separate layer in the mapping library so that requests for the layers are sent.
66
+
If you want to send multiple layers in a single request, provide them as a string with comma-separated values: `["layerA,layerB"]`.
67
+
`wms:layers` and `wms:styles` work in parallel, so the first style in the array will be used for the first layer, etc.
68
+
69
+
-[More details on the mapping between WMS query parameters and the STAC fields](./wms.md)
62
70
63
71
### OGC WMTS
64
72
@@ -73,6 +81,9 @@ Links to a [OGC Web Map Tile Service](https://www.ogc.org/standards/wmts) (WMTS)
73
81
| wmts:layer| string\|\[string]|**REQUIRED**. The layers to show on the map by default, either a list of layer names or a single layer name. |
74
82
| wmts:dimensions| Map\<string, string> | Any additional dimension parameters to add to the request as key-value-pairs, usually added as query parameters. |
75
83
84
+
If you provide multiple array elements in `wmts:layer` (e.g. `["layerA", "layerB"]`),
85
+
each should occur in a separate layer in the mapping library so that individual requests for the layers are sent.
86
+
76
87
#### href
77
88
78
89
For WMTS, the `href` is pointing to the URL of the Capabilities document, but without the query parameters for the Capabilities request.
| WIDTH=output_width | Yes | Width in pixels of map picture. | determined by mapping library |
14
+
| HEIGHT=output_height | Yes | Height in pixels of map picture. | determined by mapping library |
15
+
| FORMAT=output_format | Yes | Output format of map. | via `type`|
16
+
| TRANSPARENT=TRUE\|FALSE | No | Background transparency of map (default=FALSE). | via `wms:transparent`|
17
+
| BGCOLOR=color_value | No | Hexadecimal red-green-blue colour value for the background color (default=0xFFFFFF). | not supported, some libraries may support setting it via `wms:dimensions`|
18
+
| EXCEPTIONS=exception_format | No | The format in which exceptions are to be reported by the WMS (default=XML). | determined by mapping library |
19
+
| TIME=time | No | Time value of layer desired. | via `wms:dimensions`|
20
+
| ELEVATION=elevation | No | Elevation of layer desired. | via `wms:dimensions`|
21
+
| Other sample dimension(s) | No | Value of other dimensions as appropriate. | via `wms:dimensions`|
22
+
23
+
Columns 1-3 are coming from the [OGC WMS specification, version 1.3.0](https://portal.ogc.org/files/?artifact_id=14416), chapter 7.3.2.
0 commit comments