anvaka / panzoom

Universal pan and zoom library (DOM, SVG, Custom)
https://anvaka.github.io/panzoom/demo/attach-via-script.html
MIT License
1.79k stars 287 forks source link

Pan restrict only to image view #314

Open blpraveen opened 10 months ago

blpraveen commented 10 months ago

Can pan be restricted to only image visible?

hopperelec commented 6 months ago

If I'm understanding your issue correctly, I have the same issue here- I want users to only be able to pan when zoomed in. I tried setting the bounds to

{
  left: svg.width.baseVal.value,
  right: 0,
  top: svg.height.baseVal.value,
  bottom: 0,
}

which does prevent me from panning while zoomed out... but it also prevents me from zooming in.