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: f7365e6c57b871c5db4584d18ea30455b4708f46 (plain)
1
2
3
4
5
6
7
8
9
10
package com.mapswithme.maps.location;

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

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