Class LayerRemoveEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<LeafletMap>
org.vaadin.addons.componentfactory.leaflet.layer.events.LeafletEvent
org.vaadin.addons.componentfactory.leaflet.layer.events.LayerEvent
org.vaadin.addons.componentfactory.leaflet.layer.events.LayerRemoveEvent
- All Implemented Interfaces:
Serializable
Event fired when a layer is removed from the map.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionLayerRemoveEvent(LeafletMap source, boolean fromClient, String layerId) Creates a new layer remove event. -
Method Summary
Methods inherited from class org.vaadin.addons.componentfactory.leaflet.layer.events.LayerEvent
getChild, toStringMethods inherited from class org.vaadin.addons.componentfactory.leaflet.layer.events.LeafletEvent
getLayerId, getTypeMethods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, getUI, isFromClient, unregisterListener
-
Constructor Details
-
LayerRemoveEvent
public LayerRemoveEvent(LeafletMap source, boolean fromClient, @EventData("event.detail.target.options.uuid") String layerId) Creates a new layer remove event.- Parameters:
source- the source componentfromClient-trueif the event originated on the client sidelayerId- the identifier of the layer that was removed
-