GeoLocation

@Serializable
data class GeoLocation(val latitude: String? = null, val longitude: String? = null)

This class defines a geo location.

Parameters

latitude

Latitude of the point in decimal degree.

longitude

Longitude of the point in decimal degree.

Constructors

Link copied to clipboard
constructor(latitude: String? = null, longitude: String? = null)

Properties

Link copied to clipboard
val latitude: String? = null
Link copied to clipboard
val longitude: String? = null