blob: cad29f79b55d1e49f986fb3259f40c6c8d26adc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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);
}
|