总之,我想在脱机模式下从经纬度获取地址。我试过这个地理编码器包。但是这需要Internet从经纬度
获取地址try 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);
}
}
我只是想要同样的想法,但不需要互联网。
欢迎任何回答和建议。提前谢谢。
您只能通过使用internet使用此软件包获得您的位置地址。不使用互联网是不可能得到地址的。
https://pub.dev/packages/geolocator