Fused Location Provider setsmallestDisplacement 在 Android 中不起作用

Fused Location Provider setsmallestDisplacement doesn't work in Android

您好,我已经实现了 Fused Location provider Api 来获取服务中的位置更新。我能够根据设置的时间间隔触发 onlocationchanged 事件。但是,当我将 setsmallestDisplacement 设置为 10 米时,即使设备静止不动,事件也会被触发。有没有人有类似的问题。请提供建议。下面是代码

    mlocationrequest = LocationRequest.create();
    mlocationrequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
    mlocationrequest.setInterval(60000); // Update location every 1 minute
    mlocationrequest.setFastestInterval(10000);
    mlocationrequest.setSmallestDisplacement(10);


    LocationServices.FusedLocationApi.requestLocationUpdates(
            mGoogleApiClient, mlocationrequest, this);

为了找到两个位置值之间的距离,我使用了这种方法。

public static float distFrom (float lat1, float lng1, float lat2, float lng2 ) 
{
    double earthRadius = 3958.75;
    double dLat = Math.toRadians(lat2-lat1);
    double dLng = Math.toRadians(lng2-lng1);
    double a = Math.sin(dLat/2) * Math.sin(dLat/2) +
    Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) *
    Math.sin(dLng/2) * Math.sin(dLng/2);
    double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
    double dist = earthRadius * c;

    int meterConversion = 1609;

    return new Float(dist * meterConversion).floatValue();
}

但我得到的距离为 43.51 、 49.32 、 520.02 ,即使设备静止不动。是因为平板电脑在室内使用吗?

您可能会在 onLocationChanged 方法中得到不同的经纬度,该方法描述的位移比 10 多。因此,请检查您得到的经纬度并手动测量一次距离以交叉-验证一下。

除上述之外,还有一个可能的原因是优先事项, 如果上述情况看起来不错,请尝试以下操作:

 mlocationrequest = LocationRequest.create();
mlocationrequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
mlocationrequest.setSmallestDisplacement(10);
mlocationrequest.setInterval(60000); // Update location every 1 minute
mlocationrequest.setFastestInterval(10000);

如果为 LocationRequest 设置了 Displacement,如果设备仍然处于移动状态,则没有机会获取位置,因为 Displacement 优先于 Intervals(interval 和 fastestInterval)。 正如我所猜测的那样 - 可能是您将不同的 LocationRequest 对象(未设置位移)传递给 LocationServices.FusedLocationApi.requestLocationUpdates().

我一直在寻找如果间隔和位移都设置了如何接收位置的答案。我刚刚用我的应用程序验证了自己,下面是 LocationRequest 的不同配置的行为:

  1. 未设置位移参数
    setInterval 设置为 1 分钟,最快为 1 分钟。

    我每隔一分钟收到一次位置信息。但是你看到它有时接收得快,有时接收得慢,这是因为 setInterval 不准确。

06-03 11:46:55.408 25776-25776/ MyLocationListener:onLocationChanged.
06-03 11:47:56.008 25776-25776/MyLocationListener:onLocationChanged.
06-03 11:48:18.768 25776-25776/MyLocationListener:onLocationChanged.
06-03 11:49:22.938 25776-25776/MyLocationListener:onLocationChanged.
06-03 11:50:22.948 25776-25776/MyLocationListener:onLocationChanged.
06-03 11:52:22.978 25776-25776/MyLocationListener:onLocationChanged.
06-03 11:53:22.998 25776-25776/MyLocationListener:onLocationChanged。

  1. 位移参数设置为10米
    setInterval 如上1分钟。

    如果设备不移动或越过该距离,则不会收到任何位置更新。在下面的每个 onLocationChanged 之间,我走了 10 多米,所以我收到了 loc。

06-03 11:26:53.328 16709-16709/MyLocationListener:onLocationChanged.
06-03 11:35:38.318 16709-16709/MyLocationListener:onLocationChanged.
06-03 11:39:16.728 16709-16709/MyLocationListener:onLocationChanged.