3liz / lizmap-web-client

Transfer a QGIS project on a server, Lizmap is providing the web interface to browse it
https://www.lizmap.com
Mozilla Public License 2.0
254 stars 143 forks source link

Wrong TileMatrixLimits in WMTS GetCapabilities #2166

Open nboisteault opened 3 years ago

nboisteault commented 3 years ago

What is the bug?

<TileMatrixSetLink>
            <TileMatrixSet>EPSG:3857</TileMatrixSet>
            <TileMatrixSetLimits>

                <TileMatrixLimits>
                    <TileMatrix>0</TileMatrix>
                    <MinTileRow>0</MinTileRow>
                    <MaxTileRow>1</MaxTileRow>
                    <MinTileCol>0</MinTileCol>
                    <MaxTileCol>1</MaxTileCol>
                </TileMatrixLimits>
...

It should be

<TileMatrixSetLink>
            <TileMatrixSet>EPSG:3857</TileMatrixSet>
            <TileMatrixSetLimits>

                <TileMatrixLimits>
                    <TileMatrix>0</TileMatrix>
                    <MinTileRow>0</MinTileRow>
                    <MaxTileRow>0</MaxTileRow>
                    <MinTileCol>0</MinTileCol>
                    <MaxTileCol>0</MaxTileCol>
                </TileMatrixLimits>

Environment

nboisteault commented 3 years ago

@rldhont in https://wxs.ign.fr/choisirgeoportail/geoportail/wmts?SERVICE=WMTS&REQUEST=GetCapabilities There are different values for <TileMatrix>0</TileMatrix> not just 0,0,0,0.

nboisteault commented 3 years ago

@rldhont Do i move this issue to 3.4.5 or backlog 3.4?