MapTouchEvent
MapTouchEvent
is the event type for touch-related map events.
Extends
Implements
MapLibreEvent
<TouchEvent
>
Accessors
defaultPrevented
get
defaultPrevented():boolean
true
if preventDefault
has been called.
Returns
boolean
Defined in
Methods
preventDefault()
preventDefault():
void
Prevents subsequent default processing of the event by the map.
Calling this method will prevent the following default map behaviors:
- On
touchstart
events, the behavior of DragPanHandler - On
touchstart
events, the behavior of TwoFingersTouchZoomRotateHandler
Returns
void
Defined in
Properties
lngLat
lngLat:
LngLat
The geographic location on the map of the center of the touch event points.
Defined in
lngLats
lngLats:
LngLat
[]
The geographical locations on the map corresponding to a
touch event's touches
property.
Defined in
originalEvent
originalEvent:
TouchEvent
The DOM event which caused the map event.
Implementation of
MapLibreEvent.originalEvent
Defined in
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.
Defined in
points
points:
Point
[]
The array of pixel coordinates corresponding to a
touch event's touches
property.
Defined in
target
target:
Map
The Map
object that fired the event.
Implementation of
MapLibreEvent.target
Defined in
type
type:
"touchcancel"
|"touchend"
|"touchmove"
|"touchstart"
The event type.
Implementation of
MapLibreEvent.type
Overrides
Event.type