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