aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/sensors/IGeoData.java
blob: 5b4f0467177b8e3262597973779bdaa1350714a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cgeo.geocaching.sensors;

import cgeo.geocaching.enumerations.LocationProviderType;
import cgeo.geocaching.geopoint.Geopoint;

import android.location.Location;

public interface IGeoData {

    public Location getLocation();
    public LocationProviderType getLocationProvider();

    public boolean isPseudoLocation();

    public Geopoint getCoords();
    public float getBearing();
    public float getSpeed();
    public float getAccuracy();
    public boolean getGpsEnabled();
    public int getSatellitesVisible();
    public int getSatellitesFixed();
}