Google Maps JavaScript API V3 Reference
https://developers.google.com/maps/documentation/javascript/reference#release-version
google.maps.Map
class
Events | |
---|---|
bounds_changed |
Arguments:
None
This event is fired when the viewport bounds have changed.
|
center_changed |
Arguments:
None
This event is fired when the map center property changes.
|
click |
Arguments:
MouseEvent
This event is fired when the user clicks on the map (but not when they click on a marker or infowindow).
|
dblclick |
Arguments:
MouseEvent
This event is fired when the user double-clicks on the map. Note that the click event will also fire, right before this one.
|
drag |
Arguments:
None
This event is repeatedly fired while the user drags the map.
|
dragend |
Arguments:
None
This event is fired when the user stops dragging the map.
|
dragstart |
Arguments:
None
This event is fired when the user starts dragging the map.
|
heading_changed |
Arguments:
None
This event is fired when the map heading property changes.
|
idle |
Arguments:
None
This event is fired when the map becomes idle after panning or zooming.
|
maptypeid_changed |
Arguments:
None
This event is fired when the mapTypeId property changes.
|
mousemove |
Arguments:
MouseEvent
This event is fired whenever the user's mouse moves over the map container.
|
mouseout |
Arguments:
MouseEvent
This event is fired when the user's mouse exits the map container.
|
mouseover |
Arguments:
MouseEvent
This event is fired when the user's mouse enters the map container.
|
projection_changed |
Arguments:
None
This event is fired when the projection has changed.
|
resize |
Arguments:
None
Developers should trigger this event on the map when the div changes size:
google.maps.event.trigger(map, 'resize') .
|
rightclick |
Arguments:
MouseEvent
This event is fired when the DOM contextmenu event is fired on the map container.
|
tilesloaded |
Arguments:
None
This event is fired when the visible tiles have finished loading.
|
tilt_changed |
Arguments:
None
This event is fired when the map tilt property changes.
|
zoom_changed |
Arguments:
None
This event is fired when the map zoom property changes.
|
Google Maps JavaScript API V3 Reference