Package-level declarations

Types

Link copied to clipboard
class Altitude(val meters: Double, val accuracy: Float?)

Object representing the altitude of the user.

Link copied to clipboard
class Azimuth(val degrees: Float, val accuracy: Float?)

Object representing the users azimuth.

Link copied to clipboard
class Coordinates(val latitude: Double, val longitude: Double)

A geographic location represented by latitude and longitude.

Link copied to clipboard
class Location(val coordinates: Coordinates, val accuracy: Double, val azimuth: Azimuth?, val speed: Speed?, val altitude: Altitude?, val timestampMillis: Long)

Object representing a user's location.

Link copied to clipboard
class Place(val coordinates: Coordinates, val name: String?, val street: String?, val isoCountryCode: String?, val country: String?, val postalCode: String?, val administrativeArea: String?, val subAdministrativeArea: String?, val locality: String?, val subLocality: String?, val thoroughfare: String?, val subThoroughfare: String?)

Represents a place on Earth.

Link copied to clipboard

Represents the priority of a location request.

Link copied to clipboard
class Speed(val mps: Float, val accuracy: Float?)

Object representing the speed of the user.