与问题相同。如何在Flutter中跟踪后台服务中的位置?
答案 0 :(得分:1)
只需使用geolocator插件,您只需要一行代码即可!
答案 1 :(得分:1)
geolocator: ^4.0.3
'package:geolocator/geolocator.dart';
使用以下代码
void getLocation() async {
Position position = await Geolocator()
.getCurrentPosition(desiredAccuracy: LocationAccuracy.high);
print(position);
}
答案 2 :(得分:0)
Here是带有插件和整个代码的官方链接。