嗨,我已经实现了Fused Location提供程序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。是因为平板电脑正在室内使用吗?

最佳答案

如果为“位置请求”设置了“位移”,则当设备仍处于静止状态时,没有机会获得位置,因为“位移”优先于“间隔”(“间隔”和“最快间隔”)。
我猜想-可能您已将其他LocationRequest对象(未设置位移)传递给LocationServices.FusedLocationApi.requestLocationUpdates()。

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

  • 没有设置位移参数
    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。
  • 位移参数设置为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。

    关于android - 融合的位置提供程序setsmallestDisplacement在Android中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27778707/

    10-08 23:44