aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2014-07-30 10:52:22 +0200
committerSamuel Tardieu <sam@rfc1149.net>2014-07-30 11:03:01 +0200
commit583b227309e2a48894ea4496695c38f684361e65 (patch)
treeff74028c50fba5caabefda5a33a2ca9d8242b4da /main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java
parent68de6a122e82c438b932e24652e7b30ae9e902e2 (diff)
downloadcgeo-583b227309e2a48894ea4496695c38f684361e65.zip
cgeo-583b227309e2a48894ea4496695c38f684361e65.tar.gz
cgeo-583b227309e2a48894ea4496695c38f684361e65.tar.bz2
Move Google maps v1 files to package cgeo.geocaching.maps.google.v1
Hopefully this will make someone motivated to create the .v2 alternative.
Diffstat (limited to 'main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java')
-rw-r--r--main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java b/main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java
deleted file mode 100644
index dc694b8..0000000
--- a/main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package cgeo.geocaching.maps.google;
-
-import cgeo.geocaching.maps.interfaces.GeoPointImpl;
-import cgeo.geocaching.maps.interfaces.MapProjectionImpl;
-
-import com.google.android.maps.GeoPoint;
-import com.google.android.maps.Projection;
-
-import android.graphics.Point;
-
-public class GoogleMapProjection implements MapProjectionImpl {
-
- private Projection projection;
-
- public GoogleMapProjection(Projection projectionIn) {
- projection = projectionIn;
- }
-
- @Override
- public void toPixels(GeoPointImpl leftGeo, Point left) {
- projection.toPixels((GeoPoint) leftGeo, left);
- }
-
- @Override
- public Object getImpl() {
- return projection;
- }
-
-}