Skip to content

Commit

Permalink
Fix: tile mode when getMap requests are over wmsMaxWidth/wmsMaxHeight
Browse files Browse the repository at this point in the history
Tile mode could not be activated because of a typo in a variable name
  • Loading branch information
nboisteault committed Jan 18, 2024
1 parent 12b3ebf commit 5f497e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/src/modules/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default class map extends olMap {
// Respecting WMS max size
const wmsMaxSize = [
mainLizmap.initialConfig.options.wmsMaxWidth,
mainLizmap.initialConfig.options.wmsMaxheight,
mainLizmap.initialConfig.options.wmsMaxHeight,
];

const customTileGrid = new TileGrid({
Expand Down

0 comments on commit 5f497e7

Please sign in to comment.