mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 21:26:10 +03:00
minImageRatio should never be set below 1 unless you want to load the Nth level tiles to level N-M, which effectively throttles network requests and draw animations but does not produce a better picture
This commit is contained in:
parent
0b75a2f259
commit
10f60c88cb
@ -474,8 +474,8 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
|
|||||||
constrainDuringPan: false,
|
constrainDuringPan: false,
|
||||||
wrapHorizontal: false,
|
wrapHorizontal: false,
|
||||||
wrapVertical: false,
|
wrapVertical: false,
|
||||||
visibilityRatio: 0.5,
|
visibilityRatio: 0.5, //-> how much of the viewer can be negative space
|
||||||
minPixelRatio: 0.9,
|
minPixelRatio: 1, //->closer to 0 draws tiles meant for a higher zoom at this zoom
|
||||||
defaultZoomLevel: 0,
|
defaultZoomLevel: 0,
|
||||||
minZoomLevel: null,
|
minZoomLevel: null,
|
||||||
maxZoomLevel: null,
|
maxZoomLevel: null,
|
||||||
@ -488,12 +488,12 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
|
|||||||
zoomPerScroll: 1.2,
|
zoomPerScroll: 1.2,
|
||||||
zoomPerSecond: 1.0,
|
zoomPerSecond: 1.0,
|
||||||
animationTime: 1.2,
|
animationTime: 1.2,
|
||||||
blendTime: 0.1,
|
blendTime: 0,
|
||||||
alwaysBlend: false,
|
alwaysBlend: false,
|
||||||
autoHideControls: true,
|
autoHideControls: true,
|
||||||
immediateRender: false,
|
immediateRender: false,
|
||||||
minZoomImageRatio: 0.9,
|
minZoomImageRatio: 0.9, //-> closer to 0 allows zoom out to infinity
|
||||||
maxZoomPixelRatio: 1.1,
|
maxZoomPixelRatio: 1.1, //-> higher allows 'over zoom' into pixels
|
||||||
|
|
||||||
//DEFAULT CONTROL SETTINGS
|
//DEFAULT CONTROL SETTINGS
|
||||||
showSequenceControl: true, //SEQUENCE
|
showSequenceControl: true, //SEQUENCE
|
||||||
|
Loading…
Reference in New Issue
Block a user