Flutter - Geolocator.getCurrentPosition 永远不会返回

问题描述 投票:0回答:2

我正在 Flutter 上使用 Google 地图 API,而 Geolocator.getCurrentPosition 永远不会返回。 这是我的代码(主要取自 Simone Alessandria 的 Flutter 项目,并从网络上进行了一些更改,试图解决此问题)

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 永远不会返回,在时间限制下至少我得到了一个例外。

这是我的 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

我正在 Pixel 模拟器中运行

谢谢!

android flutter google-maps future
2个回答
3
投票

可能与您采集位置时的距离过滤器有关。发生这种情况是因为当您打开应用程序时,它会获取 currentLocation。然后,当您想再次获取当前值时,过滤器会检测到该位置太近,并且不会将其传递。在我的应用程序中,我首先尝试 getLastKnowPosition,然后当它为 null 时,我从 getCurrentPosition 获取它。


0
投票

如果您正在运行

IOS simulator

Go to Features > Location > Set to custom and set it back to default

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.