dyomedea/src/components/map/config.ts

12 lines
426 B
TypeScript
Raw Normal View History

2022-10-18 08:10:23 +00:00
/**The handlers configuration */
export const handlersConfig = {
2022-10-18 15:42:11 +00:00
/**Controls the activity of the mouse mouse event */
mouseMoveThrottleDelay: 50,
/**Controls the activity of the wheel event */
wheelThrottleDelay: 100,
2022-10-18 16:47:40 +00:00
/** Controls the activity of the single touch move event */
singleTouchMoveThrottleDelay: 50,
/** Controls the activity of the double touch move event */
doubleTouchMoveThrottleDelay: 100,
2022-10-18 15:42:11 +00:00
};