return new Coordinate(lat, lon);
}
private String getVerticalAlignmentString() {
// No center position, just top and bottom:
VerticalAlignment align = getVerticalAlignment();
if (align != null && align.equals(VerticalAlignment.TOP)) {
return "top";
}
return "bottom";
}