reverse Geocode
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)
Content copied to clipboard
Gets the device's current location, then reverse geocodes that location, converting coordinates to address.
See also
Parameters
block
A block callback.
@JvmStatic()
Content copied to clipboard
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)
Content copied to clipboard
Reverse geocodes a location, converting coordinates to address.
See also
Parameters
location
The location to geocode.
block
A block callback.