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: docs/developer-guide/maps-configuration.md
+22-13Lines changed: 22 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1154,18 +1154,15 @@ In order to create a `wms` based mesh there are some requirements that need to b
1154
1154
- A WMS layer configured with **BIL 16 bit** output in **big endian mode** and **-9999 nodata value**
1155
1155
- BILTerrainProvider is used to parse `wms` based mesh. Supports three ways in parsing the metadata of the layer
1156
1156
1. Layer configuration with **sufficient metadata** of the layer. This prevents a call to `getCapabilities` eventually improving performance of the parsing of the layer.
1157
-
Mandatory fields are `url`, `name`, `version`, `crs`.
1157
+
Mandatory fields are `url`, `name`, `crs`.
1158
1158
```json
1159
1159
{
1160
1160
"type":"terrain",
1161
1161
"provider":"wms",
1162
1162
"url":"http://hot-sample/geoserver/wms",
1163
1163
"name":"workspace:layername",
1164
-
"littleendian":false,
1164
+
"littleEndian":false,
1165
1165
"visibility":true,
1166
-
"version":"1.3.0",
1167
-
"fixedHeight":null, // Map height. Max value is < 65
1168
-
"fixedWidth":null, // Map width. Max value is < 65
1169
1166
"crs":"CRS:84"// Supports only CRS:84 | EPSG:4326 | EPSG:3857 | OSGEO:41001
1170
1167
}
1171
1168
```
@@ -1176,7 +1173,7 @@ In order to create a `wms` based mesh there are some requirements that need to b
0 commit comments