GeoCourse

data class GeoCourse(    val course: Float,     val courseAccuracy: Float,     val timestamp: Long) : Parcelable

Represents course, course accuracy and acquired timestamp of data.

Constructors

Link copied to clipboard
fun GeoCourse(    course: Float,     courseAccuracy: Float,     timestamp: Long)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val course: Float

The course (direction of travel) of the position, in degrees. Valid course values are in the range [0, 360), with 0 degrees representing north and values increasing clockwise.

Link copied to clipboard
val courseAccuracy: Float

The course accuracy (in degrees).

Link copied to clipboard
val timestamp: Long

The timestamp of acquired data in seconds from UNIX epoch