blob: 252fd4f21f157c58cd6de07fe52ef9bf08dcc3b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package cgeo.geocaching;
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 double getAltitude();
public float getBearing();
public float getSpeed();
public float getAccuracy();
public boolean getGpsEnabled();
public int getSatellitesVisible();
public int getSatellitesFixed();
}
|