blob: dbdb9556c4caa996dad41be32c2d87e65c10c748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package cgeo.geocaching.mapinterfaces;
/**
* Defines the common functions of the provider-specific
* MapController implementations
* @author rsudev
*
*/
public interface MapControllerImpl {
void setZoom(int mapzoom);
void setCenter(GeoPointImpl geoPoint);
void animateTo(GeoPointImpl geoPoint);
void zoomToSpan(int latSpanE6, int lonSpanE6);
}
|