GeoLocation

fun GeoLocation(    position: GeoCoordinate,     accuracy: Double? = null,     bearing: Double? = null,     heading: Double? = null,     speed: Double? = null,     altitude: Double? = null,     time: Long = System.currentTimeMillis(),     provider: String = DEFAULT_PROVIDER,     providerType: LocationProviderType = LocationProviderType.REALTIME,     extras: Bundle? = null)

Parameters

position

Geographical position of the current location.

accuracy

GPS accuracy (in meters) of the current location.

bearing

Horizontal direction (in degrees) of travel at the current location. Or null if not available.

heading

Compass angle the object is pointing to from the current location. Or null if not available.

speed

Current speed in meters per second. Or null if not available.

altitude

Altitude in meters. Or null if not available.

time

Time in millis.

provider

The name of the location provider.

providerType

The type of the location provider (eg. REALTIME or SOFT_DR).

extras

Extra data accompanying this location.

Important: This is a Public Preview API. It may be changed or removed at any time.