aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/interfaces/MapControllerImpl.java
blob: fe782f7bc05e9282656302c3d3457d16582d0743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cgeo.geocaching.maps.interfaces;

/**
 * Defines the common functions of the provider-specific
 * MapController implementations
 */
public interface MapControllerImpl {

    void setZoom(int mapzoom);

    void setCenter(GeoPointImpl geoPoint);

    void animateTo(GeoPointImpl geoPoint);

    void zoomToSpan(int latSpanE6, int lonSpanE6);

}