GpsInfo

data class GpsInfo(val lat: Float? = null, val lng: Float? = null, val _altitude: Float? = null, val _dateTimeZone: String? = null, val _datum: String? = null)

GPS information

Constructors

Link copied to clipboard
constructor(lat: Float? = null, lng: Float? = null, _altitude: Float? = null, _dateTimeZone: String? = null, _datum: String? = null)

Properties

Link copied to clipboard
val _altitude: Float? = null

Altitude (meters) When GPS is disabled: 0

Link copied to clipboard
val _dateTimeZone: String? = null

Location information acquisition time YYYY:MM:DD hh:mm:ss+(-)hh:mm hh is in 24-hour time, +(-)hh:mm is the time zone when GPS is disabled: ""(null characters)

Link copied to clipboard
val _datum: String? = null

Geodetic reference When GPS is enabled: WGS84 When GPS is disabled: ""(null characters)

Link copied to clipboard
val lat: Float? = null

Latitude (-90.000000 – 90.000000) When GPS is disabled: 65535

Link copied to clipboard
val lng: Float? = null

Longitude (-180.000000 – 180.000000) When GPS is disabled: 65535