LatLngAltitude

class LatLngAltitude : Parcelable


A latitude/longitude pair with an altitude value.

Summary

Constants

const Parcelable.Creator<LatLngAltitude!>!
const LatLngAltitude!
const Double

The maximum altitude allowed in the Maps SDK for 3D.

Public constructors

LatLngAltitude(latitude: Double, longitude: Double, altitude: Double)

Constructor for LatLngAltitude with parameters for required fields.

Public functions

Unit
writeToParcel(dest: Parcel!, flags: Int)

Extension functions

Unit

Validates that the given LatLngAltitude is correct.

Inherited functions

From android.os.Parcelable
abstract Int

Constants

CREATOR

const val CREATORParcelable.Creator<LatLngAltitude!>!

DEFAULT_CENTER

const val DEFAULT_CENTERLatLngAltitude!

MAX_ALTITUDE_METERS

const val MAX_ALTITUDE_METERS = 6.317E7: Double

The maximum altitude allowed in the Maps SDK for 3D.

Public constructors

LatLngAltitude

LatLngAltitude(latitude: Double, longitude: Double, altitude: Double)

Constructor for LatLngAltitude with parameters for required fields.

Parameters
latitude: Double

The latitude of the point.

longitude: Double

The longitude of the point.

altitude: Double

The altitude of the point.

Public functions

writeToParcel

fun writeToParcel(dest: Parcel!, flags: Int): Unit

Public properties

altitude

var altitudeDouble

latitude

var latitudeDouble

longitude

var longitudeDouble

Extension functions

validate

fun LatLngAltitude.validate(): Unit

Validates that the given LatLngAltitude is correct.