From 583b227309e2a48894ea4496695c38f684361e65 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Wed, 30 Jul 2014 10:52:22 +0200 Subject: Move Google maps v1 files to package cgeo.geocaching.maps.google.v1 Hopefully this will make someone motivated to create the .v2 alternative. --- .../maps/google/GoogleMapProjection.java | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java (limited to 'main/src/cgeo/geocaching/maps/google/GoogleMapProjection.java') 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; - } - -} -- cgit v1.1