reverseGeocode

fun reverseGeocode(callback: Radar.RadarGeocodeCallback)

Gets the device's current location, then reverse geocodes that location, converting coordinates to address.

See also

Parameters

callback

A callback.

fun reverseGeocode(block: (status: Radar.RadarStatus, addresses: Array<RadarAddress>?) -> Unit)

Gets the device's current location, then reverse geocodes that location, converting coordinates to address.

See also

Parameters

block

A block callback.

fun reverseGeocode(location: Location, callback: Radar.RadarGeocodeCallback)

Reverse geocodes a location, converting coordinates to address.

See also

Parameters

location

The location to reverse geocode.

callback

A callback.

fun reverseGeocode(location: Location, block: (status: Radar.RadarStatus, addresses: Array<RadarAddress>?) -> Unit)

Reverse geocodes a location, converting coordinates to address.

See also

Parameters

location

The location to geocode.

block

A block callback.