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