In short I want to fetch address from latitude longitude at offline mode. I've tried this geocoder package. but this is required internet to get address from latitude longitude
Tried so far
static getCurrentLocationAddress() async {
try {
List<Placemark> listPlaceMarks = await placemarkFromCoordinates(
currentPosition.latitude, currentPosition.longitude);
Placemark place = listPlaceMarks[0];
currentLocationAddress =
"${place.country}, ${place.locality}, ${place.administrativeArea}";
} catch (e) {
print(e);
}
}
I just want same think but without internet requirement.
Any answer and suggestions are most welcome. Thanks in advance.