package carnero.cgeo.googlemaps; import com.google.android.maps.GeoPoint; import com.google.android.maps.Projection; import android.graphics.Point; import carnero.cgeo.mapinterfaces.GeoPointImpl; import carnero.cgeo.mapinterfaces.MapProjectionImpl; 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; } }