Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Methods

addListener

  • addListener(eventName: string, handler: (...args: any[]) => void): MapsEventListener
  • Adds the given listener function to the given event name. Returns an identifier for this listener that can be used with google.maps.event.removeListener.

    Parameters

    • eventName: string
    • handler: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns MapsEventListener

bindTo

  • bindTo(key: string, target: MVCObject, targetKey?: string, noNotify?: boolean): void
  • Binds a View to a Model.

    Parameters

    • key: string
    • target: MVCObject
    • Optional targetKey: string
    • Optional noNotify: boolean

    Returns void

changed

  • changed(key: string): void

get

  • get(key: string): any
  • Gets a value.

    Parameters

    • key: string

    Returns any

getLayerId

  • getLayerId(): string
  • Returns string

getLayerKey

  • getLayerKey(): string
  • Returns string

getMap

  • getMap(): Map<Element>
  • Returns Map<Element>

getMapId

  • getMapId(): string
  • Returns string

getOpacity

  • getOpacity(): number
  • Returns number

getProperties

getStatus

getZIndex

  • getZIndex(): number
  • Returns number

notify

  • notify(key: string): void
  • Notify all observers of a change on this property. This notifies both objects that are bound to the object's property as well as the object that it is bound to.

    Parameters

    • key: string

    Returns void

set

  • set(key: string, value: any): void
  • Sets a value.

    Parameters

    • key: string
    • value: any

    Returns void

setLayerId

  • setLayerId(layerId: string): void
  • Parameters

    • layerId: string

    Returns void

setLayerKey

  • setLayerKey(layerKey: string): void
  • Parameters

    • layerKey: string

    Returns void

setMap

  • setMap(map: null | Map<Element>): void
  • Parameters

    • map: null | Map<Element>

    Returns void

setMapId

  • setMapId(mapId: string): void
  • Parameters

    • mapId: string

    Returns void

setOpacity

  • setOpacity(opacity: number): void
  • Parameters

    • opacity: number

    Returns void

setOptions

setValues

  • setValues(values: any): void
  • Sets a collection of key-value pairs.

    Parameters

    • values: any

    Returns void

setZIndex

  • setZIndex(zIndex: number): void
  • Parameters

    • zIndex: number

    Returns void

unbind

  • unbind(key: string): void
  • Removes a binding. Unbinding will set the unbound property to the current value. The object will not be notified, as the value has not changed.

    Parameters

    • key: string

    Returns void

unbindAll

  • unbindAll(): void

Generated using TypeDoc