diff options
Diffstat (limited to 'main/src/cgeo/geocaching/sensors/IGeoData.java')
| -rw-r--r-- | main/src/cgeo/geocaching/sensors/IGeoData.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/sensors/IGeoData.java b/main/src/cgeo/geocaching/sensors/IGeoData.java new file mode 100644 index 0000000..5b4f046 --- /dev/null +++ b/main/src/cgeo/geocaching/sensors/IGeoData.java @@ -0,0 +1,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(); +} |
