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 occurred
    static 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

      static 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.
      Parameters:
      latLng - The ILatLng where the mouse event occurred on the map
      Returns:
      A new IMouseEvent instance