aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/google/GoogleGeoPoint.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/maps/google/GoogleGeoPoint.java')
-rw-r--r--main/src/cgeo/geocaching/maps/google/GoogleGeoPoint.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/maps/google/GoogleGeoPoint.java b/main/src/cgeo/geocaching/maps/google/GoogleGeoPoint.java
new file mode 100644
index 0000000..56bc40c
--- /dev/null
+++ b/main/src/cgeo/geocaching/maps/google/GoogleGeoPoint.java
@@ -0,0 +1,13 @@
+package cgeo.geocaching.maps.google;
+
+import cgeo.geocaching.maps.interfaces.GeoPointImpl;
+
+import com.google.android.maps.GeoPoint;
+
+public class GoogleGeoPoint extends GeoPoint implements GeoPointImpl {
+
+ public GoogleGeoPoint(int latitudeE6, int longitudeE6) {
+ super(latitudeE6, longitudeE6);
+ }
+
+}