mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
zoom equation updated
This commit is contained in:
parent
cd9c5032f8
commit
41a07b2250
2 changed files with 2 additions and 2 deletions
|
@ -1242,7 +1242,7 @@ function OpenSeadragon( options ){
|
|||
},
|
||||
zoomPerClick: 2,
|
||||
zoomPerScroll: 1.2,
|
||||
zoomPerDblTapDrag: 10000000000000000000000,
|
||||
zoomPerDblTapDrag: 1.2,
|
||||
zoomPerSecond: 1.0,
|
||||
blendTime: 0,
|
||||
alwaysBlend: false,
|
||||
|
|
|
@ -2993,7 +2993,7 @@ function onCanvasDrag( event ) {
|
|||
gestureSettings = this.gestureSettingsByDeviceType( event.pointerType );
|
||||
|
||||
if (gestureSettings.dblClickToZoom && THIS[ this.hash ].draggingToZoom){
|
||||
var factor = Math.pow( this.zoomPerDblTapDrag, event.delta.y );
|
||||
var factor = Math.pow( this.zoomPerDblTapDrag, event.delta.y / 100 );
|
||||
this.viewport.zoomBy(factor);
|
||||
this.viewport.applyConstraints();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue