package map.test; import com.google.android.maps.GeoPoint; import com.google.android.maps.OverlayItem; public class BusStop extends OverlayItem { private Stop stop; public BusStop(Stop s) { super(new GeoPoint((int)(s.latitude()), (int)(s.longitude())), Integer.toString(s.id()), s.myName()); stop = s; } public Stop myStop() { return stop; } }