Back to project page WhatsUp.
The source code is released under:
GNU General Public License
If you think the Android project WhatsUp 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 nu.placebo.whatsup.model; /* w w w . jav a 2 s. c om*/ import com.google.android.maps.OverlayItem; /** * An extended OverlayItem to contain an id. * * @author Ablim */ public class ExtendedOverlayItem extends OverlayItem { private int id; public ExtendedOverlayItem(GeoLocation g) { super(g.getLocation(), g.getTitle(), "Rating: 0"); id = g.getId(); } public int getId() { return id; } }