-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I move the view so that it centers on a node? #229
Comments
I've tried using two functions
as specified in the documentation but neither did anything (no matter of values). Try to check the examples as well, that example seems to work but I don't understand why mine does not work.. |
In my case, I had to fix the positions a little bit, but it was basically this: setViewport(
{
x: -node.position.x - (node.width / 2) + (viewportWidth / 2),
y: -node.position.y - (node.height / 2) + (viewportHeight / 2),
zoom: 1,
},
{ duration: 800 }
); |
you can use
|
This worked perfectly for me. |
For instance, when searching for a node I want to be able to center it when selected. I can't easily do this by taking replacing the current screen offset with the position of the node beacuse that doesn't seem accurate.
The text was updated successfully, but these errors were encountered: