Package-level declarations

Types

Link copied to clipboard

Interface of the Reverse geocoding API for turning a location on the map into a human-readable address.

Link copied to clipboard

Callback that reports that a ReverseGeocoderResponse or SearchFailure has been received.

Link copied to clipboard
data class ReverseGeocoderOptions(val position: GeoPoint, val heading: Angle? = null, val radius: Distance = DEFAULT_RADIUS, val roadUses: Set<RoadUse> = emptySet(), val areaTypes: Set<AreaType> = emptySet(), val locale: Locale = Locale.getDefault(), val geopoliticalView: GeopoliticalView? = null, val preferClosestAccurateAddress: Boolean = false, val fetchGeometry: Boolean = false)

Defines the parameters of a Reverse Geocoding query.

Link copied to clipboard
data class ReverseGeocoderResponse(val summary: ReverseGeocoderSummary, val places: List<PlaceMatch>)

Response of the Reverse Geocoding API.