Back to project page advanced-tourist-map.
The source code is released under:
GNU General Public License
If you think the Android project advanced-tourist-map listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.muxe.advancedtouristmap.overlay; /* w w w . ja v a 2s. c om*/ import org.mapsforge.android.maps.GeoPoint; import org.mapsforge.android.maps.OverlayItem; import android.content.Context; import android.graphics.drawable.Drawable; public abstract class GenericOverlayItem extends OverlayItem { public GenericOverlayItem() { super(); } public GenericOverlayItem(GeoPoint geoPoint, String title, String snippet) { super(geoPoint, title, snippet); } public GenericOverlayItem(GeoPoint point, String title, String snippet, Drawable marker) { super(point, title, snippet, marker); } public abstract void onTap(Context context); }