All Implemented Interfaces:
Serializable

@DomEvent(value="leaflet-mouseout", debounce=) public class MouseOutEvent extends MouseEvent
Event fired when the mouse leaves the map or a layer.
See Also:
  • Constructor Details

    • MouseOutEvent

      public MouseOutEvent(LeafletMap source, boolean fromClient, @EventData("event.detail.target.options.uuid") String layerId, @EventData("event.detail.latlng.lat") double latitude, @EventData("event.detail.latlng.lng") double longitude, @EventData("event.detail.layerPoint.x") int layerPointX, @EventData("event.detail.layerPoint.y") int layerPointY, @EventData("event.detail.containerPoint.x") int containerPointX, @EventData("event.detail.containerPoint.y") int containerPointY)
      Creates a new mouse out event.
      Parameters:
      source - the source component
      fromClient - true if the event originated on the client side
      layerId - the id of the layer that fired the event
      latitude - the latitude of the point where the event occurred
      longitude - the longitude of the point where the event occurred
      layerPointX - the x pixel coordinate relative to the map layer
      layerPointY - the y pixel coordinate relative to the map layer
      containerPointX - the x pixel coordinate relative to the map container
      containerPointY - the y pixel coordinate relative to the map container