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