mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 22:03:31 +03:00
event
This commit is contained in:
parent
d231a44d9a
commit
6f9e59c156
1 changed files with 2 additions and 1 deletions
|
@ -1442,6 +1442,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||
}
|
||||
|
||||
unloaded.slice(0, 50).forEach(tile => {
|
||||
console.log("loading tile x,y,level", tile.x, tile.y, tile.level, tile.getUrl());
|
||||
this._loadTile(tile, currentTime);
|
||||
});
|
||||
|
||||
|
@ -1453,7 +1454,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||
|
||||
|
||||
// Load the new 'best' n tiles
|
||||
if (bestTiles && bestTiles.length > 0) {
|
||||
if (unloaded && unloaded.length > 0) {
|
||||
this._needsDraw = true;
|
||||
return false;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue