こんにちは、サービスで位置情報の更新を取得するために 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);
2 つの位置値の間の距離を見つけるために、この方法を使用しました。
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 になります。屋内でタブレットを使用しているからでしょうか?