Lat Lng
data class LatLng(@FloatRange(from = -90.0, to = 90.0 ) val latitude: Double, @FloatRange(from = -1.7976931348623157E308, to = 1.7976931348623157E308 ) val longitude: Double) : Parcelable
An object describing a specific location with Latitude and Longitude in decimal degrees.
Parameters
latitude
Latitude in decimal degrees
longitude
Longitude in decimal degrees
Constructors
Link copied to clipboard
constructor(@FloatRange(from = -90.0, to = 90.0 ) latitude: Double, @FloatRange(from = -1.7976931348623157E308, to = 1.7976931348623157E308 ) longitude: Double)