I'm using Angular 10 with panzoom. Inside the panzoom element I have draggable elements using @angular/cdk/drag-drop.
This works fine until I zoom in or out with the panzoom. When zoomed in the dragging is accelerated and moves faster than my mouse. When zoomed out it's decelerated and moves more slowly than my mouse.
I assume this to be due to with pixel location vs scaled elements within the panzoom somehow.
I found this answer which dealt with it, but I couldn't replicate it and it was using JQuery draggables.
Does anyone know how to make the draggable elements keep the same speed as the mouse when zoomed in or out with panzoom and angular-cdk-drag-drop?
Thank you.