aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/mapinterfaces/OverlayBase.java
blob: 59afb49555c5538bc2b3dbdcfb60a2a2b9c786f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);

}