float y = 103.833002f;
println(x + ", " + y);
System.out.printf("x = %.9f y = %.9f \n", x, y);
// println(PApplet.nf(x, 1, 9) + ", " + PApplet.nf(y, 1, 9));
Marker marker1 = new SimplePointMarker(location1);
Marker marker2 = new SimplePointMarker(location2);
Marker marker3 = new SimplePointMarker(location3);
map.addMarkers(marker1, marker2, marker3);
}