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