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
* - Introduced guardrails to ensure we dont go outside the limits of the WebMercator bbox
- Support defaults for crs, bbox and bbox-crs
* - support maps request, even when there are no spatial extents defined in conf
* - removed failing tests in wms_facade provider
* - fixed flake8
* - Make sure we only show the map preview, when the view is within bounds of the crs
* - updated unit tests for the wms_facade provider
* - Set input and output coordinates always treated as (x, y) regardless of the axis order defined in the CRS, only for OAM
* - Reimplement the logic for default crs and bbox-crs in OAM, according to the Standard
- fix typo in bbox-crs par
* - updated default_crs code in wms_facade provider
- fixed tests for wms_facade
* - updated documentation
- added Content-Crs and Content-Bbox to OAM
* - fixed flake8 errors
* - update crs84 code on wms_facade
* - improve code readability of query arg
* - put back missed transparency arg
* - use DEFAULT_CRS from crs.py
* - added another alias for crs84
* - put back preview of OAM, in extents greater than the world.
* - fixed wms_facade test
* - fixed flake8 errors
According to the `Standard <https://docs.ogc.org/is/20-058/20-058.html#_5df53b56-5468-4c9d-acac-6abfddd83ccf>`_, OGC API - Maps
118
-
supports a `crs` parameter, expressed as an uri. Currently, this provider supports WGS84 and Web Mercator; for a matter of convenience, they can be expressed in
121
+
supports a `crs` parameter, expressed as an uri. Currently, this provider supports CRS84, WGS84 and Web Mercator; for a matter of convenience, they can be expressed in
119
122
a number of different ways, other than the uri format.
120
123
121
124
- `EPSG:4326`
122
125
- `EPSG:3857`
123
126
- `4326`
124
-
- `3857`
127
+
- `3857`,
128
+
- `CRS84`
125
129
130
+
If `crs` is not provided, the server will default to the `storage_crs`; in case it does not exist, the default is `CRS84`.
131
+
If `crs-bbox` is not provided, it will default to `CRS84`. If the `bbox` is not provided, it will default to `-180, -90, 180, 90`.
132
+
133
+
The response headers will always contain the `Content-Crs` and `Content-Bbox`. Examples:
0 commit comments