Options
All
  • Public
  • Public/Protected
  • All
Menu

A LinearRing geometry contains a number of LatLngs, representing a closed LineString. There is no need to make the first LatLng equal to the last LatLng. The LinearRing is closed implicitly.

Hierarchy

  • LinearRing

Implements

Index

Constructors

constructor

  • A LinearRing geometry contains a number of LatLngs, representing a closed LineString. There is no need to make the first LatLng equal to the last LatLng. The LinearRing is closed implicitly.

    Parameters

    Returns LinearRing

Methods

forEachLatLng

  • forEachLatLng(callback: (a: LatLng) => void): void
  • Repeatedly invokes the given function, passing a point from the geometry to the function on each invocation.

    Parameters

    Returns void

getArray

  • Returns an array of the contained LatLngs. A new array is returned each time getArray() is called.

    Returns LatLng[]

getAt

  • Returns the n-th contained LatLng.

    Parameters

    • n: number

    Returns LatLng

getLength

  • getLength(): number
  • Returns the number of contained LatLngs.

    Returns number

getType

  • getType(): string
  • Returns the string "LinearRing".

    Returns string

Generated using TypeDoc