Uses of Class
org.vaadin.addons.componentfactory.leaflet.layer.events.MouseEvent
Packages that use MouseEvent
Package
Description
-
Uses of MouseEvent in org.vaadin.addons.componentfactory.leaflet.layer.events
Subclasses of MouseEvent in org.vaadin.addons.componentfactory.leaflet.layer.eventsModifier and TypeClassDescriptionclassEvent fired when the user clicks (or taps) on the map or a layer.classEvent fired when the user right-clicks (contextmenu) on the map or a layer.classEvent fired when the user double-clicks (or double-taps) on the map or a layer.classEvent fired when the user presses a mouse button on the map or a layer.classEvent fired when the mouse moves over the map or a layer.classEvent fired when the mouse leaves the map or a layer.classEvent fired when the mouse enters the map or a layer.classEvent fired before a click on the map or a layer, just before the corresponding click event.classEvent fired when the user releases a mouse button on the map or a layer. -
Uses of MouseEvent in org.vaadin.addons.componentfactory.leaflet.layer.events.supports
Method parameters in org.vaadin.addons.componentfactory.leaflet.layer.events.supports with type arguments of type MouseEventModifier and TypeMethodDescriptiondefault voidSupportsMouseEvents.onClick(LeafletEventListener<MouseEvent> listener) Fired when the user clicks (or taps) the layer.default voidSupportsMouseEvents.onContextMenuOpened(LeafletEventListener<MouseEvent> listener) Fired when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event.default voidSupportsMouseEvents.onDoubleClick(LeafletEventListener<MouseEvent> listener) Fired when the user double-clicks (or double-taps) the layer.default voidSupportsMouseEvents.onMouseDown(LeafletEventListener<MouseEvent> listener) Fired when the user pushes the mouse button on the layer.default voidSupportsMouseEvents.onMouseMove(LeafletEventListener<MouseEvent> listener) Fired while the mouse moves over the layeyr.default voidSupportsMouseEvents.onMouseOut(LeafletEventListener<MouseEvent> listener) Fired when the mouse leaves the layer.default voidSupportsMouseEvents.onMouseOver(LeafletEventListener<MouseEvent> listener) Fired when the mouse enters the layerdefault voidSupportsMouseEvents.onMouseUp(LeafletEventListener<MouseEvent> listener) Fired when the user releases the mouse button pushed on the layer. -
Uses of MouseEvent in org.vaadin.addons.componentfactory.leaflet.layer.map.functions
Methods in org.vaadin.addons.componentfactory.leaflet.layer.map.functions with parameters of type MouseEventModifier and TypeMethodDescriptiondefault CompletableFuture<Point> MapConversionFunctions.mouseEventToContainerPoint(MouseEvent mouseEvent) Given a MouseEvent object, returns the pixel coordinate relative to the map container where the event took place.default CompletableFuture<LatLng> MapConversionFunctions.mouseEventToLatLng(MouseEvent mouseEvent) Given a MouseEvent object, returns geographical coordinate where the event took place.default CompletableFuture<Point> MapConversionFunctions.mouseEventToLayerPoint(MouseEvent mouseEvent) Given a MouseEvent object, returns the pixel coordinate relative to the origin pixel where the event took place.