A LinearRing geometry contains a number of LatLng
s,
representing a closed LineString. There is no need to make the first
LatLng
equal to the last LatLng
. The LinearRing
is closed implicitly.
Access by calling const {Data} = await google.maps.importLibrary("maps")
. See
https://developers.google.com/maps/documentation/javascript/libraries.
Returns an array of the contained LatLng
s. A new array is
returned each time getArray()
is called.
Returns the n
-th contained LatLng
.
Returns the number of contained LatLng
s.
Returns the string "LinearRing"
.
Generated using TypeDoc
A LinearRing geometry contains a number of
LatLng
s, representing a closed LineString. There is no need to make the firstLatLng
equal to the lastLatLng
. The LinearRing is closed implicitly.Access by calling
const {Data} = await google.maps.importLibrary("maps")
. See https://developers.google.com/maps/documentation/javascript/libraries.