Represents mouse event data transformed by the library.
core/abstraction/events/i-google-maps-mouse-event.ts
Properties |
position |
position:
|
Type: google.maps.LatLngLiteral
|
The coordinate where the mouse event took place. |
export interface IGoogleMapsMouseEvent
{
/**
* The coordinate where the mouse event took place.
*
* @type {google.maps.LatLngLiteral}
*/
position: google.maps.LatLngLiteral;
}