PlacemarkType placeMark = objectFactory.createPlacemarkType();
placeMark.setName(kiloMeter + ". Km");
placeMark.setVisibility(FALSE);
PointType point = objectFactory.createPointType();
point.getCoordinates().add(formatPositionAsString(longitude) + "," + formatPositionAsString(latitude) + ",0");
placeMark.setAbstractGeometryGroup(objectFactory.createPoint(point));
return placeMark;
}
private StyleType createLineStyle(String styleName, double width, byte[] color) {
ObjectFactory objectFactory = new ObjectFactory();