blob: 9696b27e39d7e03bbd4ff7f6d71de9fc1d336b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 Geopoint getCoords();
public double getAltitude();
public float getBearing();
public float getSpeed();
public float getAccuracy();
public boolean getGpsEnabled();
public int getSatellitesVisible();
public int getSatellitesFixed();
}
|