LineElemStyle ls = new LineElemStyle();
float f = random.nextFloat();
ls.color = Color
.getHSBColor(f * random.nextFloat(), 0.9f, 0.9f);
ls.width = LogicConstants.getInt("PLAN_WAY_WIDTH", 2);
MarkerLayer stops = new MarkerLayer(new GpxData(), "Stops "
+ id_layer, File.createTempFile("stops", "tmp"),
new GpxLayer(new GpxData()), this.mapView);
stops.data.add(new StopMarker(latlon_origin, "origin",
"tsp_stop", stops, 0, 0, ls.color));
for (String stop : plan.getStops()) {
String[] array = stop.split(",");
double[] point = new double[2];