如何在后台服务中获取经度和经度?

时间:2019-07-23 13:23:09

标签: flutter dart

与问题相同。如何在Flutter中跟踪后台服务中的位置?

3 个答案:

答案 0 :(得分:1)

只需使用geolocator插件,您只需要一行代码即可!

答案 1 :(得分:1)

  1. 添加geolocator: ^4.0.3
  2. 导入'package:geolocator/geolocator.dart';
  3. 为android&ios添加权限
  4. 使用以下代码

    void getLocation() async {
    Position position = await Geolocator()
        .getCurrentPosition(desiredAccuracy: LocationAccuracy.high);
    print(position);
    }
    

答案 2 :(得分:0)

Here是带有插件和整个代码的官方链接。