GeoPoint
data class GeoPoint(@FloatRange(from = -90.0, to = 90.0) val latitude: Double, @FloatRange(from = -180.0, to = 180.0) val longitude: Double) : Parcelable
The implementation of geographic coordinates.
Constructors
Link copied to clipboard
constructor(@FloatRange(from = -90.0, to = 90.0) latitude: Double, @FloatRange(from = -180.0, to = 180.0) longitude: Double)
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Generates a hash code for this GeoPoint object by taking COORDINATE_COMPARISON_TOLERANCE into account.
Link copied to clipboard
Link copied to clipboard
Renders a GeoPoint as a string.