我正在Flutter和Geolocator.getCurrentPosition上使用Google地图API。这是我的代码(主要取自Simone Alessandria的Flutter Projects,以及试图解决此问题的网络上的一些更改(
Future _getCurrentLocation() async {
bool isGeolocationAvailable = await Geolocator.isLocationServiceEnabled();
if (isGeolocationAvailable) {
try {
Geolocator.getCurrentPosition(desiredAccuracy: LocationAccuracy.best, timeLimit: Duration(seconds: 10)).then((pos) {
setPosition(pos);
});
} catch (error) {
print(error.toString());
Geolocator.getLastKnownPosition().then((pos) {
setPosition(pos);
});
}
}
return null;
}
正如我提到的,Geolocator.getCurrentPosition永远不会返回,有时间限制的话,至少我得到了一个exeption。
这是我的Flutter医生以防万一:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 2.5.1, on Ubuntu 20.04.3 LTS 5.11.0-38-generic, locale en_US.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2021.1)
[✓] Android Studio (version 4.1)
[✓] VS Code
[✓] Connected device (1 available)
• No issues found!
以及版本
environment:
sdk: ">=2.14.2 <3.0.0"
dependencies:
flutter:
sdk: flutter
http: ^0.13.3
google_maps_flutter: ^2.0.10
permission_handler: ^8.1.6
geolocator: ^7.7.0
我在像素模拟器中运行
谢谢!
这可能与收集位置时的距离过滤器有关。之所以会发生这种情况,是因为当你打开一个应用程序时,它会占用currentLocation。然后,当你想再次获取当前位置时,过滤器会检测到位置太近,并不会将其传递出去。在我的应用程序中,我会先尝试获取LastKnowPosition,然后当它为空时,我会从getCurrentPosition获取它。