reverse

abstract suspend fun reverse(latitude: Double, longitude: Double): GeocoderResult<Place>

Get the address for a given latitude and longitude.

Return

A GeocoderResult containing a list of addresses or an error.

Parameters

latitude

The latitude to reverse geocode.

longitude

The longitude to reverse geocode.


open suspend fun reverse(coordinates: Coordinates): GeocoderResult<Place>

Get the address for a given Coordinates.

Return

A GeocoderResult containing a list of addresses or an error.

Parameters

coordinates

The Coordinates to reverse geocode.