<div dir="ltr"><br>I have been playing around with wind.js example program.  I  was a bit surprised when I discovered that the loader function is called 16 times.<br><br><br>'const wind = new DataTileSource({<br>  // transition must be 0, see <a href="https://github.com/openlayers/openlayers/issues/16119">https://github.com/openlayers/openlayers/issues/16119</a><br>  transition: 0,<br>  wrapX: true,<br>  async loader(z, x, y) {<br>    console.log("LOADER=========================>>>>>");<br>    const {<br>      data: inputData,<br>      width: inputWidth,<br>      height: inputHeight,<br>    } = await windData;'<br><br>The string LOADER is printed 16 times,  I would like to know why<br><br><br></div>