A LatLngAltitude
is a 3D point in geographical coordinates:
latitude, longitude, and altitude.
Access by calling const {LatLngAltitude} = await google.maps.importLibrary("core")
. See
https://developers.google.com/maps/documentation/javascript/libraries.
The initializing value.
Whether to preserve the initialization values, even
if they may not necessarily be valid latitude values in the range of
[-90, 90] or valid longitude values in the range of [-180, 180]. The
default is false
which enables latitude clamping and
longitude wrapping.
Returns the altitude.
Returns the latitude.
Returns the longitude.
Comparison function.
Another LatLngAltitude object.
Generated using TypeDoc
A
LatLngAltitude
is a 3D point in geographical coordinates: latitude, longitude, and altitude.Access by calling
const {LatLngAltitude} = await google.maps.importLibrary("core")
. See https://developers.google.com/maps/documentation/javascript/libraries.