OnMove
The OnMove
type is a callback that fires whenever the viewport is moved, either by user interaction or programmatically. It receives the triggering event and the new viewport state.
type OnMove = (event: MouseEvent | TouchEvent | null, viewport: Viewport) => void;
Name | Type | Default |
---|---|---|
event | MouseEvent | TouchEvent | |
viewport | Viewport |
Last updated on