I need information how i can set elements in the center canvas, that are in large positions, e.g. x / y 10000/10000.
In the moment i set:
var stage = new Konva.Stage({
container: 'cad-view',
x: 100000,
y: 100000,
width: width,
height: height,
draggable: true,
});
This solution doesn't work. Elements that have the same coordinates are far out of the view. How can I set canvas for these coordinates to be in the middle?
Thanks!