Back to project page mapped.
The source code is released under:
Apache License
If you think the Android project mapped 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 com.chalmers.frapp.database; /*ww w . ja v a2 s.c o m*/ import com.google.android.maps.GeoPoint; import com.google.android.maps.OverlayItem; public class Entrance extends OverlayItem { public Entrance(final String streetAddress, final GeoPoint location) { super(location, "Entrance", streetAddress); } public String getStreetAddress() { return getSnippet(); } public GeoPoint getLocation() { return getPoint(); } }