ABPW10
Results
1
comments of
ABPW10
Workaround by temporarily overriding the map's `getZoom()` function : ``` const originalZoom=map.getZoom() const originalGetZoom=map.getZoom if(originalZoom%1!==0){map.getZoom=()=>Math.round(originalZoom)} mapLyrImg.options=lyrImg.options mapLyrImg.setUrl(lyrImg._url) if(originalZoom%1!==0){map.getZoom=originalGetZoom;map.setZoom(originalZoom)} ```