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