blob: 0e8828c360de787afdc852a988faaae8e418c85a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package cgeo.geocaching.maps.interfaces;
import android.graphics.Point;
/**
* Defines common functions of the provider-specific
* MapProjection implementations
*/
public interface MapProjectionImpl {
Object getImpl();
void toPixels(GeoPointImpl leftGeo, Point left);
}
|