Back to project page egotrip.
The source code is released under:
Apache License
If you think the Android project egotrip 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 net.myegotrip.egotrip.map; //from w ww. ja v a2 s . c om import java.io.Serializable; import net.myegotrip.egotrip.LocationUpdate; import android.graphics.Color; public class RoutePoint extends Placemark implements Serializable{ public RoutePoint(LocationUpdate location, int drawble) { super(location); setColor(Color.parseColor("#6C8715")); setDrawable(drawble); this.setTitle(""+location.getLat()+"/"+location.getLng()); } public String toString() { return "RP: "+super.getSortOrder()+":"+ super.getCoordinates(); } }