GithubHelp home page GithubHelp logo

Comments (5)

adrianosmond avatar adrianosmond commented on August 19, 2024

Would having a panzoom element that's smaller than the parent also cause issues with the pan method? I've added a pan to 0,0 button to the codepen and it takes you to different places at different zoom levels.

from panzoom.

timmywil avatar timmywil commented on August 19, 2024

@adrianosmond That sounds like expected behavior. Panning simply sets the translation x and y values. You would see different parts of the panzoom element at different zoom levels.

from panzoom.

pensionera avatar pensionera commented on August 19, 2024

Hi,
After some test I find how you can fix this.
On line round 640 has
var clientX = focal.clientX - container.width / 2;
var clientY = focal.clientY - container.height / 2;
after change container.width and container.height with the panzoom element original width and height focal point work fine.
Something like this:
var clientX = focal.clientX - options.originWidth / 2;
var clientY = focal.clientY - options.originHeight / 2;
where originWidth and originHeight I added to options for first size of panzoom element.

from panzoom.

timmywil avatar timmywil commented on August 19, 2024

@pensionera A good suggestion, but I think we can continue automating this calculation. Patch incoming.

from panzoom.

RedBraceWeb avatar RedBraceWeb commented on August 19, 2024

@timmywil
I am using the contain:invert option and running into a similar problem. I tried translating the x,y coordinates based on the scale of the image but had no success. Can you look at this sample page and tell me the best method for setting the focal point? The goal is to fire the events and pan zoom to the specific coordinates. http://redbrace.com/campusmap/map.html

from panzoom.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.