interface MapAdapterEvents {
    click: MapClickEvent;
    create: MapAdapter<any, any, any>;
    data-error: DataLoadError;
    data-loaded: DataLoadError;
    mousemove: MapAdapter<any, any, any>;
    mouseout: MapAdapter<any, any, any>;
    mouseover: MapAdapter<any, any, any>;
    move: MapAdapter<any, any, any>;
    moveend: MapAdapter<any, any, any>;
    movestart: MapAdapter<any, any, any>;
    preclick: MapClickEvent;
    zoom: MapAdapter<any, any, any>;
    zoomend: MapAdapter<any, any, any>;
    zoomstart: MapAdapter<any, any, any>;
}

Hierarchy (view full)

Events

Fired every time a map is clicked.

create: MapAdapter<any, any, any>
data-error: DataLoadError
data-loaded: DataLoadError
mousemove: MapAdapter<any, any, any>

Fired while the mouse moves over the map.

mouseout: MapAdapter<any, any, any>

Fired when the mouse leaves the map.

mouseover: MapAdapter<any, any, any>

Fired when the mouse enters the map.

move: MapAdapter<any, any, any>

Fired repeatedly during any movement of the map.

moveend: MapAdapter<any, any, any>

Fired when the center of the map stops changing.

movestart: MapAdapter<any, any, any>

Fired when the view of the map starts changing (e.g. user starts dragging the map).

preclick: MapClickEvent

Fired before the map is clicked.

zoom: MapAdapter<any, any, any>

Fired repeatedly during any change in zoom level

zoomend: MapAdapter<any, any, any>

Fired when the map has changed.

zoomstart: MapAdapter<any, any, any>

Fired when the map zoom is about to change.