reverseGeocode

Translates a location in latitude and longitude into a human-readable address.

The reverse geocoder will attempt to describe the location, which may be an area name such as "Amsterdam, Netherlands", an address such as "Oosterdoksstraat 114, 1011 DK Amsterdam, Netherlands", and so forth.

This is a synchronous call.

Return

The Result containing either a ReverseGeocoderResponse with the matched addresses if the call succeeds, or a SearchFailure if it fails.

Parameters

options

Specifies the input and filters of the request. For example, the location to be reverse geocoded and the language of the returned result.


Translates a location of latitude and longitude into a human-readable address.

The reverse geocoder will attempt to describe the location, which may be an area name such as "Amsterdam, Netherlands", an address such as "Oosterdoksstraat 114, 1011 DK Amsterdam, Netherlands", and so forth.

This is an asynchronous call; the result will be returned through callback.

Return

The Result containing either a ReverseGeocoderResponse with the matched addresses if the call succeeds, or a SearchFailure if it fails.

Parameters

options

Specifies the input and filters of the request. For example, the location to be reverse geocoded and the language of the returned result.

callback

The ReverseGeocoderCallback invoked asynchronously when the search operation has finished, either successfully or with an error. The callback will be executed in the main thread.