aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/mapinterfaces/OverlayBase.java
blob: 17a4d859d4bbe744a799f036ddb8dd4bc1f283b6 (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;

import android.graphics.Canvas;
import android.graphics.Point;

/**
 * Defines the base functions of the provider-independent
 * Overlay implementations 
 * @author rsudev
 *
 */
public interface OverlayBase {

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

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

	OverlayImpl getOverlayImpl();
}