reverseGeocode method

Future<PowerMapSearchResult?> reverseGeocode(
  1. LatLng location, {
  2. String lang = 'auto',
})

Reverse geocode coordinates to an address.

Implementation

Future<PowerMapSearchResult?> reverseGeocode(
  LatLng location, {
  String lang = 'auto',
}) async {
  return await searchAPI.reverseGeocode(location, lang: lang);
}