Skip to main content

MapTouchEvent

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

Extends

Implements

Accessors

defaultPrevented

get defaultPrevented(): boolean

true if preventDefault has been called.

Returns

boolean

Methods

preventDefault()

preventDefault(): void

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

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


lngLats

lngLats: LngLat[]

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


originalEvent

originalEvent: TouchEvent

The DOM event which caused the map event.

Implementation of

TrimbleMapsEvent.originalEvent


point

point: Point

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[]

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


target

target: Map

The Map object that fired the event.

Implementation of

TrimbleMapsEvent.target


type

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

The event type.

Implementation of

TrimbleMapsEvent.type

Overrides

Event.type

Last updated August 23, 2024.