Skip to content

DragPanHandler

Defined in: src/ui/handler/shim/drag_pan.ts:37

The DragPanHandler allows the user to pan the map by clicking and dragging the cursor.

Methods

disable()

disable(): void

Defined in: src/ui/handler/shim/drag_pan.ts:81

Disables the "drag to pan" interaction.

Returns

void

Example

map.dragPan.disable();

enable()

enable(options?: boolean | DragPanOptions): void

Defined in: src/ui/handler/shim/drag_pan.ts:66

Enables the "drag to pan" interaction.

Parameters

Parameter Type Description
options? boolean | DragPanOptions Options object

Returns

void

Example

  map.dragPan.enable();
  map.dragPan.enable({
     linearity: 0.3,
     easing: bezier(0, 0, 0.3, 1),
     maxSpeed: 1400,
     deceleration: 2500,
  });

isActive()

isActive(): boolean

Defined in: src/ui/handler/shim/drag_pan.ts:101

Returns a Boolean indicating whether the "drag to pan" interaction is active, i.e. currently being used.

Returns

boolean

true if the "drag to pan" interaction is active.


isEnabled()

isEnabled(): boolean

Defined in: src/ui/handler/shim/drag_pan.ts:92

Returns a Boolean indicating whether the "drag to pan" interaction is enabled.

Returns

boolean

true if the "drag to pan" interaction is enabled.