Skip to content

Commit 11dacd1

Browse files
committed
Website updates
1 parent be39609 commit 11dacd1

File tree

9 files changed

+12
-8
lines changed

9 files changed

+12
-8
lines changed

dist/en/main/apidoc/module-ol_source_DataTile-DataTileSource.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2841,7 +2841,7 @@ <h4 class="name">
28412841

28422842
<div class="tag-source">
28432843
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js">source/DataTile.js</a>,
2844-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js#L390">line 390</a>
2844+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js#L394">line 394</a>
28452845
</div>
28462846

28472847
</div>

dist/en/main/apidoc/module-ol_source_GeoTIFF-GeoTIFFSource.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2684,7 +2684,7 @@ <h4 class="name">
26842684

26852685
<div class="tag-source">
26862686
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js">source/DataTile.js</a>,
2687-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js#L390">line 390</a>
2687+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js#L394">line 394</a>
26882688
</div>
26892689

26902690
</div>

dist/en/main/apidoc/module-ol_source_ImageTile-ImageTileSource.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2807,7 +2807,7 @@ <h4 class="name">
28072807

28082808
<div class="tag-source">
28092809
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js">source/DataTile.js</a>,
2810-
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js#L390">line 390</a>
2810+
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/source/DataTile.js#L394">line 394</a>
28112811
</div>
28122812

28132813
</div>

dist/en/main/examples/common.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/examples/common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/dist/ol.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/dist/ol.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/source/DataTile.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/source/DataTile.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,10 @@ class DataTileSource extends TileSource {
302302
const requestZ = tileCoord[0];
303303
const requestX = tileCoord[1];
304304
const requestY = tileCoord[2];
305+
const range = this.getTileGrid()?.getFullTileRange(requestZ);
306+
if (range) {
307+
loaderOptions.maxY = range.getHeight() - 1;
308+
}
305309
function loader() {
306310
return toPromise(function () {
307311
return sourceLoader(requestZ, requestX, requestY, loaderOptions);

0 commit comments

Comments
 (0)