aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/google/v1/GoogleGeoPoint.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/maps/google/v1/GoogleGeoPoint.java')
-rw-r--r--main/src/cgeo/geocaching/maps/google/v1/GoogleGeoPoint.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/main/src/cgeo/geocaching/maps/google/v1/GoogleGeoPoint.java b/main/src/cgeo/geocaching/maps/google/v1/GoogleGeoPoint.java
deleted file mode 100644
index 3f89807..0000000
--- a/main/src/cgeo/geocaching/maps/google/v1/GoogleGeoPoint.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package cgeo.geocaching.maps.google.v1;
-
-import cgeo.geocaching.location.Geopoint;
-import cgeo.geocaching.maps.interfaces.GeoPointImpl;
-
-import com.google.android.maps.GeoPoint;
-
-public class GoogleGeoPoint extends GeoPoint implements GeoPointImpl {
-
- public GoogleGeoPoint(final int latitudeE6, final int longitudeE6) {
- super(latitudeE6, longitudeE6);
- }
-
- @Override
- public Geopoint getCoords() {
- return new Geopoint(getLatitudeE6() / 1e6, getLongitudeE6() / 1e6);
- }
-
-}