0

ユーザーの場所を送信するために、Android アプリで fusedlocationproviderapi を使用しています。これは、場所が町の場所にジャンプし、後で同じ場所が表示される場合を除いて、正常に機能します。アプリが GPS から携帯電話基地局の試行に切り替わると思いますが、私たちの地域ではうまく機能しません。(MN) 私は使用しています

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

マニフェスト ファイルで、問題のある場所を無視するか、それらを検出して送信しない方法で問題ありません。

mLocationRequest = LocationRequest.create();
    mLocationRequest.setInterval(UpdateSeconds * 1000);
    mLocationRequest.setFastestInterval(UpdateSeconds * 1000);
    mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);

上記のコードを使用すると、GPS の位置情報を取得するときに非常にうまく機能します。

4

2 に答える 2

1

新しい場所が現在の最適な場所よりも「優れている」かどうかは、場所の更新ごとに決定できます。これにより、必要な精度から飛び出すことが回避されます。

protected boolean isBetterLocation(Location location,
        Location currentBestLocation) {
    final int TWO_MINUTES = 1000 * 60 * 2;

    if (currentBestLocation == null) {
        // A new location is always better than no location
        return true;
    }

    // Check whether the new location fix is newer or older
    long timeDelta = location.getTime() - currentBestLocation.getTime();
    boolean isSignificantlyNewer = timeDelta > TWO_MINUTES;
    boolean isSignificantlyOlder = timeDelta < -TWO_MINUTES;
    boolean isNewer = timeDelta > 0;

    // If it's been more than two minutes since the current location, use
    // the new location
    // because the user has likely moved
    if (isSignificantlyNewer) {
        return true;
        // If the new location is more than two minutes older, it must be
        // worse
    } else if (isSignificantlyOlder) {
        return false;
    }

    // Check whether the new location fix is more or less accurate
    int accuracyDelta = (int) (location.getAccuracy() - currentBestLocation
            .getAccuracy());
    boolean isLessAccurate = accuracyDelta > 0;
    boolean isMoreAccurate = accuracyDelta < 0;
    boolean isSignificantlyLessAccurate = accuracyDelta > 200;

    // Determine location quality using a combination of timeliness and
    // accuracy
    if (isMoreAccurate) {
        return true;
    } else if (isNewer && !isLessAccurate) {
        return true;
    } else if (isNewer && !isSignificantlyLessAccurate) {
        return true;
    }
    return false;
}
于 2015-05-18T13:44:21.213 に答える
0

GPS からのデータのみに関心がある場合は、 GPS_PROVIDERでLocationManagerを使用できます。GPS だけに興味がある場合は、FusedLocationProviderApi を使用するメリットはないと思います。

于 2015-05-15T05:58:34.967 に答える