mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
Add loadTilesOnAnimationPath flag
This commit is contained in:
parent
fd27327737
commit
97d388be7d
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue