Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LocationFixChecker.java « location « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5df6a6ec18f7ef8d1aa26593d0f36a5dba6b979d (plain)
1
2
3
4
5
6
7
8
9
10
package com.mapswithme.maps.location;

import android.location.Location;
import android.support.annotation.NonNull;

interface LocationFixChecker
{
  boolean isLocationBetterThanLast(@NonNull Location newLocation);
  boolean isAccuracySatisfied(@NonNull Location location);
}