forked from organicmaps/organicmaps
[android] Do not filter too old last known location - to be closer to GMaps behavior
This commit is contained in:
parent
a6fa527bee
commit
387c7dd617
1 changed files with 3 additions and 3 deletions
|
@ -189,9 +189,9 @@ public class LocationService implements LocationListener, SensorEventListener, W
|
|||
// @param currentBestLocation The current Location fix, to which you want to compare the new one
|
||||
protected boolean isBetterLocation(Location newLocation, Location currentBestLocation)
|
||||
{
|
||||
// A new location is thrown away if it's too old
|
||||
if (java.lang.System.currentTimeMillis() - newLocation.getTime() > TWO_MINUTES)
|
||||
return false;
|
||||
// // A new location is thrown away if it's too old
|
||||
// if (java.lang.System.currentTimeMillis() - newLocation.getTime() > TWO_MINUTES)
|
||||
// return false;
|
||||
|
||||
// A new location is better than no location
|
||||
if (currentBestLocation == null)
|
||||
|
|
Loading…
Add table
Reference in a new issue