Bounds

@SerialName(value = "bounds")
data class Bounds(val minLatitude: Double, val minLongitude: Double, val maxLatitude: Double, val maxLongitude: Double)(source)

Represents the minimum and maximum coordinates that describe the extent of the data in a GPX file.

See boundsType.

Constructors

Link copied to clipboard
constructor(minLatitude: Double, minLongitude: Double, maxLatitude: Double, maxLongitude: Double)

Properties

Link copied to clipboard
@SerialName(value = "maxlat")
val maxLatitude: Double

The maximum latitude.

Link copied to clipboard
@SerialName(value = "maxlon")
val maxLongitude: Double

The maximum longitude.

Link copied to clipboard
@SerialName(value = "minlat")
val minLatitude: Double

The minimum latitude.

Link copied to clipboard
@SerialName(value = "minlon")
val minLongitude: Double

The minimum longitude.