diff options
Diffstat (limited to 'main/src')
| -rw-r--r-- | main/src/cgeo/geocaching/IGeoData.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/IGeoData.java b/main/src/cgeo/geocaching/IGeoData.java new file mode 100644 index 0000000..d703d1a --- /dev/null +++ b/main/src/cgeo/geocaching/IGeoData.java @@ -0,0 +1,20 @@ +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 getCoordsNow(); + public Double getAltitudeNow(); + public float getBearingNow(); + public float getSpeedNow(); + public float getAccuracyNow(); + public int getSatellitesVisible(); + public int getSatellitesFixed(); + +} |
