blob: 8f9dba2109797e7b7b638f139a302d10f45cb210 (
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
31
32
33
34
35
|
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
*
* @author rsudev
*
*/
public interface ItemizedOverlayImpl extends OverlayImpl {
AbstractItemizedOverlay getBase();
void superPopulate();
void superSetLastFocusedItemIndex(int i);
Drawable superBoundCenter(Drawable markerIn);
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);
}
|