Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

Hierarchy

  • MapHandlerMap

Index

Properties

bounds_changed

bounds_changed: () => void

This event is fired when the viewport bounds have changed.

see

Maps JavaScript API

see

{@link Map#getBounds}

see

{@link Map#fitBounds}

see

{@link Map#panToBounds}

Type declaration

    • (): void
    • Returns void

center_changed

center_changed: () => void

This event is fired when the map center property changes.

see

Maps JavaScript API

see

{@link MapOptions#center}

see

{@link Map#getCenter}

see

{@link Map#setCenter}

Type declaration

    • (): void
    • Returns void

click

click: (event: MapMouseEvent | IconMouseEvent) => void

This event is fired when the user clicks on the map. An ApiMouseEvent with properties for the clicked location is returned unless a place icon was clicked, in which case an IconMouseEvent with a placeid is returned. IconMouseEvent and ApiMouseEvent are identical, except that IconMouseEvent has the placeid field. The event can always be treated as an ApiMouseEvent when the placeid is not important. The click event is not fired if a marker or infowindow was clicked.

see

Maps JavaScript API

Type declaration

dblclick

dblclick: (event: MapMouseEvent) => void

This event is fired when the user double-clicks on the map. Note that the click event will also fire, right before this one.

see

Maps JavaScript API

Type declaration

drag

drag: () => void

This event is repeatedly fired while the user drags the map.

see

Maps JavaScript API

Type declaration

    • (): void
    • Returns void

dragend

dragend: () => void

This event is fired when the user stops dragging the map.

see

Maps JavaScript API

Type declaration

    • (): void
    • Returns void

dragstart

dragstart: () => void

This event is fired when the user starts dragging the map.

see

Maps JavaScript API

Type declaration

    • (): void
    • Returns void

heading_changed

heading_changed: () => void

This event is fired when the map heading property changes.

see

Maps JavaScript API

see

{@link MapOptions#heading}

see

{@link Map#getHeading}

see

{@link Map#setHeading}

Type declaration

    • (): void
    • Returns void

idle

idle: () => void

This event is fired when the map becomes idle after panning or zooming.

see

Maps JavaScript API

Type declaration

    • (): void
    • Returns void

maptypeid_changed

maptypeid_changed: () => void

This event is fired when the mapTypeId property changes.

see

Maps JavaScript API

see

{@link MapOptions#mapTypeId}

see

{@link Map#getMapTypeId}

see

{@link Map#setMapTypeId}

Type declaration

    • (): void
    • Returns void

mousemove

mousemove: (event: MapMouseEvent) => void

This event is fired whenever the user's mouse moves over the map container.

see

Maps JavaScript API

Type declaration

mouseout

mouseout: (event: MapMouseEvent) => void

This event is fired when the user's mouse exits the map container.

see

Maps JavaScript API

Type declaration

mouseover

mouseover: (event: MapMouseEvent) => void

This event is fired when the user's mouse enters the map container.

see

Maps JavaScript API

Type declaration

projection_changed

projection_changed: () => void

This event is fired when the projection has changed.

see

Maps JavaScript API

see

{@link Map#getProjection}

Type declaration

    • (): void
    • Returns void

rightclick

rightclick: (event: MapMouseEvent) => void

This event is fired when the DOM contextmenu event is fired on the map container.

see

Maps JavaScript API

Type declaration

tilesloaded

tilesloaded: () => void

This event is fired when the visible tiles have finished loading.

see

Maps JavaScript API

Type declaration

    • (): void
    • Returns void

tilt_changed

tilt_changed: () => void

This event is fired when the map tilt property changes.

see

Maps JavaScript API

see

{@link MapOptions#tilt}

see

{@link Map#getTilt}

see

{@link Map#setTilt}

Type declaration

    • (): void
    • Returns void

zoom_changed

zoom_changed: () => void

This event is fired when the map zoom property changes.

see

Maps JavaScript API

see

{@link MapOptions#zoom}

see

{@link Map#getZoom}

see

{@link Map#setZoom}

Type declaration

    • (): void
    • Returns void

Generated using TypeDoc