blob: 3cc2061a7f2b729e23da39cd56f054cb1ecd3068 (
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.drawable.Drawable;
/**
* Common functions of the provider-specific
* OverlayItem implementations
*
* @author rsudev
*
*/
public interface OverlayItemImpl {
public String getTitle();
public Drawable getMarker(int index);
public void setMarker(Drawable markerIn);
}
|