reverseGeocode method
Reverse geocode coordinates to an address.
Implementation
Future<PowerMapSearchResult?> reverseGeocode(
LatLng location, {
String lang = 'auto',
}) async {
return await searchAPI.reverseGeocode(location, lang: lang);
}
Reverse geocode coordinates to an address.
Future<PowerMapSearchResult?> reverseGeocode(
LatLng location, {
String lang = 'auto',
}) async {
return await searchAPI.reverseGeocode(location, lang: lang);
}