GPS位置数据在Google地图上显示不正确

时间:2019-08-04 10:11:54

标签: android flutter dart

我正在使用flutter_google_maps在flutter中设置一个新项目,以跟踪用户在地图上的位置,这是一个基本项目

但是当我移动设备或乘车时,我的位置在地图上却是正确的位置

例如

  

我在大街上行走,然后Google地图导航显示我的确切位置   位置,但是我的项目未显示确切位置

只需使用Flutter Location Plugin

,代码就是正常的

并使用此代码跟踪位置

location.onLocationChanged().listen((LocationData currentLocation) {
  print(currentLocation.latitude);
  print(currentLocation.longitude);
});

并设置为google_maps_flutter

中描述的标记目标值

我在Google上发现了很多东西,但没有找到解决我问题的答案

我错了,其他位置跟踪应用使用的其他任何方法

谢谢

0 个答案:

没有答案