Skip to content

MapTouchEvent

Defined in: src/ui/events.ts:556

MapTouchEvent is the event type for touch-related map events.

Extends

Implements

Accessors

defaultPrevented

Get Signature

get defaultPrevented(): boolean

Defined in: src/ui/events.ts:611

true if preventDefault has been called.

Returns

boolean

Methods

preventDefault()

preventDefault(): void

Defined in: src/ui/events.ts:604

Prevents subsequent default processing of the event by the map.

Calling this method will prevent the following default map behaviors:

Returns

void

Properties

lngLat

lngLat: LngLat

Defined in: src/ui/events.ts:575

The geographic location on the map of the center of the touch event points.


lngLats

lngLats: LngLat[]

Defined in: src/ui/events.ts:593

The geographical locations on the map corresponding to a touch event's touches property.


originalEvent

originalEvent: TouchEvent

Defined in: src/ui/events.ts:570

The DOM event which caused the map event.

Implementation of

MapLibreEvent.originalEvent


point

point: Point

Defined in: src/ui/events.ts:581

The pixel coordinates of the center of the touch event points, relative to the map and measured from the top left corner.


points

points: Point[]

Defined in: src/ui/events.ts:587

The array of pixel coordinates corresponding to a touch event's touches property.


target

target: Map

Defined in: src/ui/events.ts:565

The Map object that fired the event.

Implementation of

MapLibreEvent.target


type

type: "touchcancel" | "touchend" | "touchmove" | "touchstart"

Defined in: src/ui/events.ts:560

The event type.

Implementation of

MapLibreEvent.type

Overrides

Event.type