Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Implements

Index

Constructors

constructor

Properties

alt

alt: string

maxZoom

maxZoom: number

minZoom

minZoom: number

name

name: string

projection

projection: Projection

radius

radius: number

tileSize

tileSize: Size

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

getOpacity

  • getOpacity(): number
  • Returns number

getTile

  • getTile(tileCoord: Point, zoom: number, ownerDocument: Document): Element
  • Parameters

    • tileCoord: Point
    • zoom: number
    • ownerDocument: Document

    Returns Element

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

releaseTile

  • releaseTile(tile: Element): void

set

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

    Parameters

    • key: string
    • value: any

    Returns void

setOpacity

  • setOpacity(opacity: number): void
  • Parameters

    • opacity: number

    Returns void

setValues

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

    Parameters

    • values: any

    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