GPSMeasure

class GPSMeasure(longitude: Double, latitude: Double, speed: Short = 0, heading: Double = Double.NaN, numSat: Short = 0, time: Long = 0)

A class that contains all the parameters related to real-time GPS Measures.

Constructors

Link copied to clipboard
constructor(longitude: Double, latitude: Double, speed: Short = 0, heading: Double = Double.NaN, numSat: Short = 0, time: Long = 0)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Accessor to the GPS heading measure (in degrees).

Link copied to clipboard

Accessor to the GPS number of satellites.

Link copied to clipboard

Accessor to the GPS speed measure (in kph).

Link copied to clipboard
var time: Long

Accessor to the GPS time in millisecond offset from the Epoch.

Link copied to clipboard
var x: Double

Accessor to the longitude coordinate

Link copied to clipboard
var y: Double

Accessor to the latitude coordinate

Functions

Link copied to clipboard
open override fun toString(): String