Revert "[android] Closes #487 - old my position is displayed."

Revert back to more stable behavior "As GMaps" when old position is better than no position.
This reverts commit ba886927c2ff095b7945a2de0cffdfc0c4891ae0.
This commit is contained in:
Alex Zolotarev 2012-02-10 20:25:17 +03:00 committed by Alex Zolotarev
parent 1e01d0493e
commit e38c381192

View file

@ -184,14 +184,6 @@ public class LocationService implements LocationListener, SensorEventListener, W
private static final int TWO_MINUTES = 1000 * 60 * 2;
boolean areLocationsEqualIgnoringTimestamp(Location l1, Location l2)
{
return l1.getLatitude() == l2.getLatitude()
&& l1.getLongitude() == l2.getLongitude()
&& l1.getAccuracy() == l2.getAccuracy()
&& l1.getProvider().equals(l2.getProvider());
}
// Determines whether one Location reading is better than the current Location
// @param location The new Location that you want to evaluate
// @param currentBestLocation The current Location fix, to which you want to compare the new one
@ -211,10 +203,6 @@ public class LocationService implements LocationListener, SensorEventListener, W
final boolean isSignificantlyOlder = timeDelta < -TWO_MINUTES;
final boolean isNewer = timeDelta > 0;
// Sometimes the same old location is returned with newer time stamp
if (areLocationsEqualIgnoringTimestamp(newLocation, currentBestLocation))
return false;
// If it's been more than two minutes since the current location, use the
// new location because the user has likely moved
if (isSignificantlyNewer)