From 6ceac75b7adc3036a587f2c241a8f966406b7d00 Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 28 Feb 2025 09:17:41 -0700 Subject: [PATCH 1/8] During animations, load tiles in the destination region --- src/tiledimage.js | 207 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 163 insertions(+), 44 deletions(-) diff --git a/src/tiledimage.js b/src/tiledimage.js index 93b361f6..a5792445 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -1084,6 +1084,13 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag return drawArea; }, + getLoadArea: function() { + var viewport = this.viewport; + var bounds = viewport.getBounds(false); + var drawArea = bounds.getBoundingBox(); + return drawArea; + }, + /** * * @returns {Array} Array of Tiles that make up the current view @@ -1347,6 +1354,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag var highestLevel = levelsInterval.highestLevel; // the highest level we should draw at our current zoom var bestTiles = []; var drawArea = this.getDrawArea(); + var loadArea = this.getLoadArea(); var currentTime = $.now(); // reset each tile's beingDrawn flag @@ -1434,6 +1442,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag levelOpacity, levelVisibility, drawArea, + loadArea, currentTime, bestTiles ); @@ -1586,16 +1595,16 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag * @param {Number} levelOpacity * @param {Number} levelVisibility * @param {OpenSeadragon.Rect} drawArea + * @param {OpenSeadragon.Rect} loadArea * @param {Number} currentTime * @param {OpenSeadragon.Tile[]} best Array of the current best tiles * @returns {Object} Dictionary {bestTiles: OpenSeadragon.Tile - the current "best" tiles to draw, updatedTiles: OpenSeadragon.Tile) - the updated tiles}. */ _updateLevel: function(level, levelOpacity, - levelVisibility, drawArea, currentTime, best) { - - var topLeftBound = drawArea.getBoundingBox().getTopLeft(); - var bottomRightBound = drawArea.getBoundingBox().getBottomRight(); + levelVisibility, drawArea, loadArea, currentTime, best) { + var drawTopLeftBound = drawArea.getBoundingBox().getTopLeft(); + var drawBottomRightBound = drawArea.getBoundingBox().getBottomRight(); if (this.viewer) { /** * - Needs documentation - @@ -1623,20 +1632,48 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag opacity: levelOpacity, visibility: levelVisibility, drawArea: drawArea, - topleft: topLeftBound, - bottomright: bottomRightBound, + topleft: drawTopLeftBound, + bottomright: drawBottomRightBound, currenttime: currentTime, best: best }); } - this._resetCoverage(this.coverage, level); - this._resetCoverage(this.loadingCoverage, level); + var updatedTiles = this._updateDrawArea(level, + levelVisibility, drawArea, currentTime); + + var bestTiles = this._updateLoadArea(level, loadArea, currentTime, best); + + return { + bestTiles: bestTiles, + updatedTiles: updatedTiles + }; + }, + + /** + * Updates all tiles at a given resolution level. + * @private + * @param {Number} level + * @param {Number} levelOpacity + * @param {Number} levelVisibility + * @param {OpenSeadragon.Rect} drawArea + * @param {Number} currentTime + * @param {OpenSeadragon.Tile[]} best Array of the current best tiles + * @returns {OpenSeadragon.Tile[]} Updated tiles + */ + _updateDrawArea: function(level, + levelVisibility, drawArea, currentTime) { + + var topLeftBound = drawArea.getBoundingBox().getTopLeft(); + var bottomRightBound = drawArea.getBoundingBox().getBottomRight(); + + this._resetCoverage(this.coverage, level); + + + var drawCornerTiles = this._getCornerTiles(level, topLeftBound, bottomRightBound); + var drawTopLeftTile = drawCornerTiles.topLeft; + var drawBottomRightTile = drawCornerTiles.bottomRight; - //OK, a new drawing so do your calculations - var cornerTiles = this._getCornerTiles(level, topLeftBound, bottomRightBound); - var topLeftTile = cornerTiles.topLeft; - var bottomRightTile = cornerTiles.bottomRight; var numberOfTiles = this.source.getNumTiles(level); var viewportCenter = this.viewport.pixelFromPoint(this.viewport.getCenter()); @@ -1648,16 +1685,85 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag // fill the viewport. Fix this by rendering an extra column of tiles. If we // are not wrapping, make sure we never render more than the number of tiles // in the image. - bottomRightTile.x += 1; + drawBottomRightTile.x += 1; if (!this.wrapHorizontal) { - bottomRightTile.x = Math.min(bottomRightTile.x, numberOfTiles.x - 1); + drawBottomRightTile.x = Math.min(drawBottomRightTile.x, numberOfTiles.x - 1); } } - var numTiles = Math.max(0, (bottomRightTile.x - topLeftTile.x) * (bottomRightTile.y - topLeftTile.y)); + + var numTiles = Math.max(0, (drawBottomRightTile.x - drawTopLeftTile.x) * (drawBottomRightTile.y - drawTopLeftTile.y)); var tiles = new Array(numTiles); var tileIndex = 0; - for (var x = topLeftTile.x; x <= bottomRightTile.x; x++) { - for (var y = topLeftTile.y; y <= bottomRightTile.y; y++) { + for (var x = drawTopLeftTile.x; x <= drawBottomRightTile.x; x++) { + for (var y = drawTopLeftTile.y; y <= drawBottomRightTile.y; y++) { + + var flippedX; + if (this.getFlip()) { + var xMod1 = ( numberOfTiles.x + ( x % numberOfTiles.x ) ) % numberOfTiles.x; + flippedX = x + numberOfTiles.x - xMod1 - xMod1 - 1; + } else { + flippedX = x; + } + + if (drawArea.intersection(this.getTileBounds(level, flippedX, y)) === null) { + // This tile is not in the draw area + continue; + } + + tiles[tileIndex] = this._updateTile( + flippedX, y, + level, + levelVisibility, + viewportCenter, + numberOfTiles, + currentTime + ); + + tileIndex += 1; + } + } + + return tiles; + }, + + /** + * Updates all tiles at a given resolution level. + * @private + * @param {Number} level + * @param {OpenSeadragon.Rect} loadArea + * @param {Number} currentTime + * @param {OpenSeadragon.Tile[]} best Array of the current best tiles to load + * @returns {OpenSeadragon.Tile[]} The new best tiles to load + */ + _updateLoadArea: function(level, loadArea, currentTime, best) { + + var loadTopLeftBound = loadArea.getBoundingBox().getTopLeft(); + var loadBottomRightBound = loadArea.getBoundingBox().getBottomRight(); + + this._resetCoverage(this.loadingCoverage, level); + + //OK, a new drawing so do your calculations + var loadCornerTiles = this._getCornerTiles(level, loadTopLeftBound, loadBottomRightBound); + var loadTopLeftTile = loadCornerTiles.topLeft; + var loadBottomRightTile = loadCornerTiles.bottomRight; + + var numberOfTiles = this.source.getNumTiles(level); + + if (this.getFlip()) { + // The right-most tile can be narrower than the others. When flipped, + // this tile is now on the left. Because it is narrower than the normal + // left-most tile, the subsequent tiles may not be wide enough to completely + // fill the viewport. Fix this by rendering an extra column of tiles. If we + // are not wrapping, make sure we never render more than the number of tiles + // in the image. + loadBottomRightTile.x += 1; + if (!this.wrapHorizontal) { + loadBottomRightTile.x = Math.min(loadBottomRightTile.x, numberOfTiles.x - 1); + } + } + + for (var x = loadTopLeftTile.x; x <= loadBottomRightTile.x; x++) { + for (var y = loadTopLeftTile.y; y <= loadBottomRightTile.y; y++) { var flippedX; if (this.getFlip()) { @@ -1667,30 +1773,22 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag flippedX = x; } - if (drawArea.intersection(this.getTileBounds(level, flippedX, y)) === null) { - // This tile is outside of the viewport, no need to draw it + if (loadArea.intersection(this.getTileBounds(level, flippedX, y)) === null) { + // This tile is outside of the dest viewport, no need to load it continue; } - var result = this._updateTile( + best = this._considerTileForLoad( flippedX, y, level, - levelVisibility, - viewportCenter, numberOfTiles, currentTime, best ); - best = result.bestTiles; - tiles[tileIndex] = result.tile; - tileIndex += 1; } } - return { - bestTiles: best, - updatedTiles: tiles - }; + return best; }, /** @@ -1756,11 +1854,10 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag * @param {OpenSeadragon.Point} viewportCenter * @param {Number} numberOfTiles * @param {Number} currentTime - * @param {OpenSeadragon.Tile} best - The current "best" tile to draw. - * @returns {Object} Dictionary {bestTiles: OpenSeadragon.Tile[] - the current best tiles, tile: OpenSeadragon.Tile the current tile} + * @returns {OpenSeadragon.Tile} the updated Tile */ _updateTile: function( x, y, level, - levelVisibility, viewportCenter, numberOfTiles, currentTime, best){ + levelVisibility, viewportCenter, numberOfTiles, currentTime){ const tile = this._getTile( x, y, @@ -1790,19 +1887,12 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag this._setCoverage( this.coverage, level, x, y, false ); - var loadingCoverage = tile.loaded || tile.loading || this._isCovered(this.loadingCoverage, level, x, y); - this._setCoverage(this.loadingCoverage, level, x, y, loadingCoverage); - if ( !tile.exists ) { - return { - bestTiles: best, - tile: tile - }; + return tile; } if (tile.loaded && tile.opacity === 1){ this._setCoverage( this.coverage, level, x, y, true ); } - this._positionTile( tile, this.source.tileOverlap, @@ -1811,6 +1901,38 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag levelVisibility ); + return tile; + }, + + /** + * Consider a tile for loading + * @private + * @param {Number} x + * @param {Number} y + * @param {Number} level + * @param {Number} numberOfTiles + * @param {Number} currentTime + * @param {OpenSeadragon.Tile[]} best - The current "best" tiles to draw. + * @returns {OpenSeadragon.Tile[]} - The updated "best" tiles to draw. + */ + _considerTileForLoad: function( x, y, level, numberOfTiles, currentTime, best){ + + const tile = this._getTile( + x, y, + level, + currentTime, + numberOfTiles + ); + + + var loadingCoverage = tile.loaded || tile.loading || this._isCovered(this.loadingCoverage, level, x, y); + this._setCoverage(this.loadingCoverage, level, x, y, loadingCoverage); + + + if ( !tile.exists ) { + return best; + } + // Try-find will populate tile with data if equal tile exists in system if (!tile.loaded && !tile.loading && this._tryFindTileCacheRecord(tile)) { loadingCoverage = true; @@ -1827,10 +1949,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag } } - return { - bestTiles: best, - tile: tile - }; + return best; }, // private From 5c60f669ecbe02d2db8cb961b690c3e4a166006a Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 28 Feb 2025 09:33:49 -0700 Subject: [PATCH 2/8] Clean up --- src/tiledimage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tiledimage.js b/src/tiledimage.js index a5792445..74b07893 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -1699,8 +1699,8 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag var flippedX; if (this.getFlip()) { - var xMod1 = ( numberOfTiles.x + ( x % numberOfTiles.x ) ) % numberOfTiles.x; - flippedX = x + numberOfTiles.x - xMod1 - xMod1 - 1; + var xMod = ( numberOfTiles.x + ( x % numberOfTiles.x ) ) % numberOfTiles.x; + flippedX = x + numberOfTiles.x - xMod - xMod - 1; } else { flippedX = x; } From fd27327737d653de03e9b709903114a0dc41ca48 Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 28 Feb 2025 11:10:29 -0700 Subject: [PATCH 3/8] Factor out common traversal code --- src/tiledimage.js | 141 ++++++++++++++++++++-------------------------- 1 file changed, 61 insertions(+), 80 deletions(-) diff --git a/src/tiledimage.js b/src/tiledimage.js index 74b07893..10055e0d 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -1650,33 +1650,23 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag }; }, - /** - * Updates all tiles at a given resolution level. + /** + * Visit all tiles in an a given area on a given level. * @private * @param {Number} level - * @param {Number} levelOpacity - * @param {Number} levelVisibility - * @param {OpenSeadragon.Rect} drawArea - * @param {Number} currentTime - * @param {OpenSeadragon.Tile[]} best Array of the current best tiles - * @returns {OpenSeadragon.Tile[]} Updated tiles + * @param {OpenSeadragon.Rect} area + * @param {Function} callback - TiledImage, x, y, total */ - _updateDrawArea: function(level, - levelVisibility, drawArea, currentTime) { - - var topLeftBound = drawArea.getBoundingBox().getTopLeft(); - var bottomRightBound = drawArea.getBoundingBox().getBottomRight(); - - this._resetCoverage(this.coverage, level); - + _visitTiles: function(level, area, callback) { + var topLeftBound = area.getBoundingBox().getTopLeft(); + var bottomRightBound = area.getBoundingBox().getBottomRight(); var drawCornerTiles = this._getCornerTiles(level, topLeftBound, bottomRightBound); var drawTopLeftTile = drawCornerTiles.topLeft; var drawBottomRightTile = drawCornerTiles.bottomRight; - var numberOfTiles = this.source.getNumTiles(level); - var viewportCenter = this.viewport.pixelFromPoint(this.viewport.getCenter()); + var numberOfTiles = this.source.getNumTiles(level); if (this.getFlip()) { // The right-most tile can be narrower than the others. When flipped, @@ -1690,10 +1680,8 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag drawBottomRightTile.x = Math.min(drawBottomRightTile.x, numberOfTiles.x - 1); } } - var numTiles = Math.max(0, (drawBottomRightTile.x - drawTopLeftTile.x) * (drawBottomRightTile.y - drawTopLeftTile.y)); - var tiles = new Array(numTiles); - var tileIndex = 0; + for (var x = drawTopLeftTile.x; x <= drawBottomRightTile.x; x++) { for (var y = drawTopLeftTile.y; y <= drawBottomRightTile.y; y++) { @@ -1705,29 +1693,60 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag flippedX = x; } - if (drawArea.intersection(this.getTileBounds(level, flippedX, y)) === null) { + if (area.intersection(this.getTileBounds(level, flippedX, y)) === null) { // This tile is not in the draw area continue; } - tiles[tileIndex] = this._updateTile( - flippedX, y, - level, - levelVisibility, - viewportCenter, - numberOfTiles, - currentTime - ); - - tileIndex += 1; + callback(this, flippedX, y, numTiles); } } + + }, + + /** + * Updates draw information for all tiles at a given level in the area + * @private + * @param {Number} level + * @param {Number} levelOpacity + * @param {Number} levelVisibility + * @param {OpenSeadragon.Rect} drawArea + * @param {Number} currentTime + * @param {OpenSeadragon.Tile[]} best Array of the current best tiles + * @returns {OpenSeadragon.Tile[]} Updated tiles + */ + _updateDrawArea: function(level, + levelVisibility, drawArea, currentTime) { + var numberOfTiles = this.source.getNumTiles(level); + var viewportCenter = this.viewport.pixelFromPoint(this.viewport.getCenter()); + this._resetCoverage(this.coverage, level); + + var tiles = null; + var tileIndex = 0; + + this._visitTiles(level, drawArea, function(tiledImage, x, y, total) { + if (!tiles) { + tiles = new Array(total); + } + tiles[tileIndex] = tiledImage._updateTile( + x, y, + level, + levelVisibility, + viewportCenter, + numberOfTiles, + currentTime + ); + + tileIndex += 1; + + }); + return tiles; }, /** - * Updates all tiles at a given resolution level. + * Updates load information for all tiles at a given level in the area * @private * @param {Number} level * @param {OpenSeadragon.Rect} loadArea @@ -1736,57 +1755,19 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag * @returns {OpenSeadragon.Tile[]} The new best tiles to load */ _updateLoadArea: function(level, loadArea, currentTime, best) { - - var loadTopLeftBound = loadArea.getBoundingBox().getTopLeft(); - var loadBottomRightBound = loadArea.getBoundingBox().getBottomRight(); - this._resetCoverage(this.loadingCoverage, level); - - //OK, a new drawing so do your calculations - var loadCornerTiles = this._getCornerTiles(level, loadTopLeftBound, loadBottomRightBound); - var loadTopLeftTile = loadCornerTiles.topLeft; - var loadBottomRightTile = loadCornerTiles.bottomRight; - var numberOfTiles = this.source.getNumTiles(level); - if (this.getFlip()) { - // The right-most tile can be narrower than the others. When flipped, - // this tile is now on the left. Because it is narrower than the normal - // left-most tile, the subsequent tiles may not be wide enough to completely - // fill the viewport. Fix this by rendering an extra column of tiles. If we - // are not wrapping, make sure we never render more than the number of tiles - // in the image. - loadBottomRightTile.x += 1; - if (!this.wrapHorizontal) { - loadBottomRightTile.x = Math.min(loadBottomRightTile.x, numberOfTiles.x - 1); - } - } + this._visitTiles(level, loadArea, function(tiledImage, x, y, _) { + best = tiledImage._considerTileForLoad( + x, y, + level, + numberOfTiles, + currentTime, + best + ); - for (var x = loadTopLeftTile.x; x <= loadBottomRightTile.x; x++) { - for (var y = loadTopLeftTile.y; y <= loadBottomRightTile.y; y++) { - - var flippedX; - if (this.getFlip()) { - var xMod = ( numberOfTiles.x + ( x % numberOfTiles.x ) ) % numberOfTiles.x; - flippedX = x + numberOfTiles.x - xMod - xMod - 1; - } else { - flippedX = x; - } - - if (loadArea.intersection(this.getTileBounds(level, flippedX, y)) === null) { - // This tile is outside of the dest viewport, no need to load it - continue; - } - - best = this._considerTileForLoad( - flippedX, y, - level, - numberOfTiles, - currentTime, - best - ); - } - } + }); return best; }, From 97d388be7ddf933d24d385e2e7a25ceeb0d35e53 Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 28 Feb 2025 11:30:30 -0700 Subject: [PATCH 4/8] Add loadTilesOnAnimationPath flag --- src/tiledimage.js | 7 ++++++- src/viewer.js | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/tiledimage.js b/src/tiledimage.js index 10055e0d..3d670062 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -176,6 +176,7 @@ $.TiledImage = function( options ) { wrapHorizontal: $.DEFAULT_SETTINGS.wrapHorizontal, wrapVertical: $.DEFAULT_SETTINGS.wrapVertical, immediateRender: $.DEFAULT_SETTINGS.immediateRender, + loadTilesOnAnimationPath: $.DEFAULT_SETTINGS.loadTilesOnAnimationPath, blendTime: $.DEFAULT_SETTINGS.blendTime, alwaysBlend: $.DEFAULT_SETTINGS.alwaysBlend, minPixelRatio: $.DEFAULT_SETTINGS.minPixelRatio, @@ -1354,7 +1355,11 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag var highestLevel = levelsInterval.highestLevel; // the highest level we should draw at our current zoom var bestTiles = []; var drawArea = this.getDrawArea(); - var loadArea = this.getLoadArea(); + var loadArea = drawArea; + + if (!this.loadTilesOnAnimationPath) { + loadArea = this.getLoadArea(); + } var currentTime = $.now(); // reset each tile's beingDrawn flag diff --git a/src/viewer.js b/src/viewer.js index 5d2d52bc..023da35b 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -1748,6 +1748,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, wrapHorizontal: _this.wrapHorizontal, wrapVertical: _this.wrapVertical, maxTilesPerFrame: _this.maxTilesPerFrame, + loadTilesOnAnimationPath: _this.loadTilesOnAnimationPath, immediateRender: _this.immediateRender, blendTime: _this.blendTime, alwaysBlend: _this.alwaysBlend, From f312bae61472797f129006db5600de6bd6c727eb Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 28 Feb 2025 15:35:25 -0700 Subject: [PATCH 5/8] Document flag --- src/openseadragon.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/openseadragon.js b/src/openseadragon.js index 837595aa..a75c3c55 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -355,6 +355,9 @@ * Specifies the animation duration per each {@link OpenSeadragon.Spring} * which occur when the image is dragged, zoomed or rotated. * + * @property {Number} [loadTilesOnAnimationPathTiles=true] + * If true, tiles are loaded when they are on the path of the animation. + * If false, tiles at the animation destination are optimistically loaded * @property {OpenSeadragon.GestureSettings} [gestureSettingsMouse] * Settings for gestures generated by a mouse pointer device. (See {@link OpenSeadragon.GestureSettings}) * @property {Boolean} [gestureSettingsMouse.dragToPan=true] - Pan on drag gesture @@ -1275,6 +1278,7 @@ function OpenSeadragon( options ){ dblClickDistThreshold: 20, springStiffness: 6.5, animationTime: 1.2, + loadTilesOnAnimationPath: true, gestureSettingsMouse: { dragToPan: true, scrollToZoom: true, From 5cc76737b4ba42130540a6f3a91685686cd1eb3f Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 28 Feb 2025 15:37:13 -0700 Subject: [PATCH 6/8] Fix flag type --- src/openseadragon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index a75c3c55..0f2789d9 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -355,7 +355,7 @@ * Specifies the animation duration per each {@link OpenSeadragon.Spring} * which occur when the image is dragged, zoomed or rotated. * - * @property {Number} [loadTilesOnAnimationPathTiles=true] + * @property {Boolean} [loadTilesOnAnimationPathTiles=true] * If true, tiles are loaded when they are on the path of the animation. * If false, tiles at the animation destination are optimistically loaded * @property {OpenSeadragon.GestureSettings} [gestureSettingsMouse] From 3cb5152905317a63cb4b6fb19143eb22743f7155 Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 7 Mar 2025 21:18:42 -0700 Subject: [PATCH 7/8] Change flag name --- src/openseadragon.js | 4 ++-- src/tiledimage.js | 4 ++-- src/viewer.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index 0f2789d9..f39d6ffc 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -355,7 +355,7 @@ * Specifies the animation duration per each {@link OpenSeadragon.Spring} * which occur when the image is dragged, zoomed or rotated. * - * @property {Boolean} [loadTilesOnAnimationPathTiles=true] + * @property {Boolean} [loadDestinationTilesOnAnimation=true] * If true, tiles are loaded when they are on the path of the animation. * If false, tiles at the animation destination are optimistically loaded * @property {OpenSeadragon.GestureSettings} [gestureSettingsMouse] @@ -1278,7 +1278,7 @@ function OpenSeadragon( options ){ dblClickDistThreshold: 20, springStiffness: 6.5, animationTime: 1.2, - loadTilesOnAnimationPath: true, + loadDestinationTilesOnAnimation: true, gestureSettingsMouse: { dragToPan: true, scrollToZoom: true, diff --git a/src/tiledimage.js b/src/tiledimage.js index 3d670062..fb6a12ac 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -176,7 +176,7 @@ $.TiledImage = function( options ) { wrapHorizontal: $.DEFAULT_SETTINGS.wrapHorizontal, wrapVertical: $.DEFAULT_SETTINGS.wrapVertical, immediateRender: $.DEFAULT_SETTINGS.immediateRender, - loadTilesOnAnimationPath: $.DEFAULT_SETTINGS.loadTilesOnAnimationPath, + loadDestinationTilesOnAnimation: $.DEFAULT_SETTINGS.loadDestinationTilesOnAnimation, blendTime: $.DEFAULT_SETTINGS.blendTime, alwaysBlend: $.DEFAULT_SETTINGS.alwaysBlend, minPixelRatio: $.DEFAULT_SETTINGS.minPixelRatio, @@ -1357,7 +1357,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag var drawArea = this.getDrawArea(); var loadArea = drawArea; - if (!this.loadTilesOnAnimationPath) { + if (this.loadDestinationTilesOnAnimation) { loadArea = this.getLoadArea(); } var currentTime = $.now(); diff --git a/src/viewer.js b/src/viewer.js index 023da35b..17c8184c 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -1748,7 +1748,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, wrapHorizontal: _this.wrapHorizontal, wrapVertical: _this.wrapVertical, maxTilesPerFrame: _this.maxTilesPerFrame, - loadTilesOnAnimationPath: _this.loadTilesOnAnimationPath, + loadDestinationTilesOnAnimation: _this.loadDestinationTilesOnAnimation, immediateRender: _this.immediateRender, blendTime: _this.blendTime, alwaysBlend: _this.alwaysBlend, From 8c6d1f4f8812118f69ea2b900fd8071fa071ad8d Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 7 Mar 2025 21:21:40 -0700 Subject: [PATCH 8/8] Update documentation to match new flag behavior --- src/openseadragon.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index f39d6ffc..5d17b7f8 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -356,8 +356,8 @@ * which occur when the image is dragged, zoomed or rotated. * * @property {Boolean} [loadDestinationTilesOnAnimation=true] - * If true, tiles are loaded when they are on the path of the animation. - * If false, tiles at the animation destination are optimistically loaded + * If true, tiles are loaded only at the destination of an animation. + * If false, tiles are loaded along the animation path during the animation. * @property {OpenSeadragon.GestureSettings} [gestureSettingsMouse] * Settings for gestures generated by a mouse pointer device. (See {@link OpenSeadragon.GestureSettings}) * @property {Boolean} [gestureSettingsMouse.dragToPan=true] - Pan on drag gesture