Coordinates

open class Coordinates(val latitude: Double, val longitude: Double)

Represents geographic coordinates with latitude and longitude.

Parameters

latitude

The latitude of the geographic location.

longitude

The longitude of the geographic location.

Inheritors

Constructors

Link copied to clipboard
constructor(latitude: Double, longitude: Double)

Properties

Link copied to clipboard
@SerializedName(value = "latitude")
open val latitude: Double
Link copied to clipboard
@SerializedName(value = "longitude")
open val longitude: Double