open class LatLng : Serializable
Represents the information about the coordinates (latitude, longitude).
| open class Comparator : Comparator<LatLng!>Utility class that allows to compare between two geo points. | 
| LatLng()Default constructor required by  LatLng(latitude: Double, longitude: Double)Instantiates a new LatLng object with provided latitude and longitude. LatLng(location: Location)Instantiates a new LatLng object based on data from  | 
| open fun getLatitude(): DoubleGet latitude. | |
| open fun getLatitudeAsString(): StringConverts longitude to string. | |
| open fun getLongitude(): DoubleGet longitude. | |
| open fun getLongitudeAsString(): StringConverts latitude to string. | |
| open static fun toArray(locations: MutableList<LatLng!>!): DoubleArrayTransforms a list of  | |
| open fun toLocation(): LocationConverts to  | 
| open class LatLngAcc : LatLngRepresents the information about the coordinates (latitude, longitude) with accuracy. |