Add loadTilesOnAnimationPath flag

This commit is contained in:
Michael Gibson 2025-02-28 11:30:30 -07:00
parent fd27327737
commit 97d388be7d
2 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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,