mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-24 22:26:10 +03:00
navigator to request maxLevel tileSize
This commit is contained in:
parent
984fb8c531
commit
69bf069038
@ -298,12 +298,9 @@ $.extend( $.Navigator.prototype, $.EventSource.prototype, $.Viewer.prototype, /*
|
||||
open: function( source ) {
|
||||
this.updateSize();
|
||||
var containerSize = this.viewer.viewport.containerSize.times( this.sizeRatio );
|
||||
if( source.tileSize > containerSize.x ||
|
||||
source.tileSize > containerSize.y ){
|
||||
this.minPixelRatio = Math.min(
|
||||
containerSize.x,
|
||||
containerSize.y
|
||||
) / source.tileSize;
|
||||
var ts = source.getTileSize(source.maxLevel);
|
||||
if ( ts > containerSize.x || ts > containerSize.y ) {
|
||||
this.minPixelRatio = Math.min( containerSize.x, containerSize.y ) / ts;
|
||||
} else {
|
||||
this.minPixelRatio = this.viewer.minPixelRatio;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user