ReverseGeocoder

interface ReverseGeocoder

Inheritors

Functions

Link copied to clipboard
open suspend fun places(coordinates: Coordinates): GeocoderResult<Place>

Get the address for a given Coordinates.

open suspend fun places(latitude: Double, longitude: Double): GeocoderResult<Place>

Get the address for a given latitude and longitude.

Link copied to clipboard
open suspend fun reverse(coordinates: Coordinates): GeocoderResult<Place>

Get the address for a given Coordinates.

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

Get the address for a given latitude and longitude.