Package provided.owlMaps.mouse
Interface IMouseEvent
- All Known Subinterfaces:
IPolyMouseEvent
public interface IMouseEvent
The parameter passed by the system to a map mouse event.
Contains the lat and lng of where the mouse event occurred on the map.
- Author:
- swong
-
Method Summary
Modifier and Type Method Description ILatLng
getLatLng()
The ILatLng location where the mouse event occurredstatic IMouseEvent
make(ILatLng latLng)
*** For internal use ONLY! Developer code should never use this method! ***
Factory method to construct an IMouseEvent instance from an ILatLng.
-
Method Details
-
getLatLng
ILatLng getLatLng()The ILatLng location where the mouse event occurred- Returns:
- an ILatLng object
-
make
*** For internal use ONLY! Developer code should never use this method! ***
Factory method to construct an IMouseEvent instance from an ILatLng.- Parameters:
latLng
- The ILatLng where the mouse event occurred on the map- Returns:
- A new IMouseEvent instance
-