Changed marks from circles to squares #fix

This commit is contained in:
Michael Rausch
2017-03-22 15:10:57 +13:00
parent 039e61def6
commit a41f2e4bde
@@ -209,7 +209,8 @@ public class CanvasController {
double y = (ORIGIN_LAT - singleMark.getLatitude()) * 1000; double y = (ORIGIN_LAT - singleMark.getLatitude()) * 1000;
gc.setFill(color); gc.setFill(color);
gc.fillOval(x, y, 0.5, 0.5); gc.fillRect(x,y,0.5,0.5);
//gc.fillOval(x, y, 0.5, 0.5);
} }
/** /**