package cgeo.geocaching.maps.interfaces; /** * Marker interface of the provider-specific * Overlay implementations * * @author rsudev * */ public interface OverlayImpl { public enum overlayType { PositionOverlay, ScaleOverlay } void lock(); void unlock(); MapViewImpl getMapViewImpl(); }