blob: ee61f12c17e0b68d1efd0b9981f6fc2b61878d64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package cgeo.geocaching.maps.interfaces;
import cgeo.geocaching.maps.AbstractItemizedOverlay;
import android.graphics.Canvas;
import android.graphics.Point;
import android.graphics.drawable.Drawable;
/**
* Defines the common functions to access the provider-specific
* ItemizedOverlay implementation
*/
public interface ItemizedOverlayImpl extends OverlayImpl {
AbstractItemizedOverlay getBase();
void superPopulate();
void superSetLastFocusedItemIndex(int i);
Drawable superBoundCenterBottom(Drawable marker);
boolean superOnTap(int index);
void superDraw(Canvas canvas, MapViewImpl mapView, boolean shadow);
void superDrawOverlayBitmap(Canvas canvas, Point drawPosition, MapProjectionImpl projection,
byte drawZoomLevel);
}
|