aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/interfaces/GeneralOverlay.java
blob: 29106b1155c6db6036c35e3b1262e07f8f6f5a3f (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.Canvas;
import android.graphics.Point;

/**
 * Defines the base functions of the provider-independent
 * Overlay implementations
 */
public interface GeneralOverlay {

    void draw(Canvas canvas, MapViewImpl mapView, boolean shadow);

    void drawOverlayBitmap(Canvas canvas, Point drawPosition,
            MapProjectionImpl projection, byte drawZoomLevel);

    OverlayImpl getOverlayImpl();
}