You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would like to know if it's possible to disable zoom on ios and andoid?
I have tested this but it doesnt work. I would still like to be able to zoom using scrollwheel and buttons.
Would like to know if it's possible to disable zoom on ios and andoid?
I have tested this but it doesnt work. I would still like to be able to zoom using scrollwheel and buttons.
const pz = panzoom(panElement, {
maxZoom: 500,
minZoom: 0.1,
zoomDoubleClickSpeed: 1
initialX: 0,
initialY: 0,
initialZoom: 1,
beforeWheel: function(e) {
if (e.ctrlKey || e.metaKey) {
return true;
} else {
e.preventDefault();
return false;
}
}
The text was updated successfully, but these errors were encountered: