GeoLocation

fun GeoLocation(position: GeoPoint, accuracy: Distance? = null, course: Angle? = null, speed: Speed? = null, altitude: Distance? = null, time: Long = System.currentTimeMillis(), elapsedRealtimeNanos: Long = SystemClock.elapsedRealtimeNanos(), provider: String = DEFAULT_PROVIDER, providerType: LocationProviderType = LocationProviderType.REALTIME, extras: Bundle? = null)

Parameters

position

Geographical position of the current location.

accuracy

GPS accuracy of the current location.

course

Course The direction of travel, expressed in degrees clockwise from the north in the range [0,360.0]. Or null if not available. Note: In the Android Location API, the corresponding field is called android.location.Location#getBearing.

speed

Current speed or null if not available.

altitude

Altitude or null if not available.

time

The UTC time of this location fix, in milliseconds since epoch (January 1, 1970).

It is not monotonic, so it should not be used to compare instances of GeoLocation. Prefer elapsedRealtimeNanos for that purpose.

elapsedRealtimeNanos

The monotonic time of this fix since system boot, including time spent in deep sleep, in nanoseconds.

Unlike time, this property can be used to reliably compare instances of GeoLocation because it is guaranteed to be monotonic.

provider

The name of the location provider.

providerType

The type of the location provider (e.g., REALTIME or SOFT_DR).

extras

Extra data accompanying this location.