Пример #1
0
 private PlacemarkType createTrack(KmlRoute route, int startIndex, int endIndex) {
   ObjectFactory objectFactory = new ObjectFactory();
   PlacemarkType placemarkType = objectFactory.createPlacemarkType();
   placemarkType.setName(TRACK);
   placemarkType.setDescription(asDescription(route.getDescription()));
   placemarkType.setStyleUrl("#" + TRACK_LINE_STYLE);
   // create gx:Track if there are at least two positions with a time stamp
   if (containTime(route)) {
     slash.navigation.kml.binding22gx.ObjectFactory gxObjectFactory =
         new slash.navigation.kml.binding22gx.ObjectFactory();
     TrackType trackType = gxObjectFactory.createTrackType();
     List<KmlPosition> positions = route.getPositions();
     for (int i = startIndex; i < endIndex; i++) {
       KmlPosition position = positions.get(i);
       String time = position.hasTime() ? formatDate(position.getTime()) : "";
       trackType.getWhen().add(time);
     }
     for (int i = startIndex; i < endIndex; i++) {
       KmlPosition position = positions.get(i);
       trackType.getCoord().add(createCoordinates(position, true));
     }
     placemarkType.setAbstractGeometryGroup(gxObjectFactory.createTrack(trackType));
   } else {
     LineStringType lineStringType = objectFactory.createLineStringType();
     placemarkType.setAbstractGeometryGroup(objectFactory.createLineString(lineStringType));
     List<String> coordinates = lineStringType.getCoordinates();
     List<KmlPosition> positions = route.getPositions();
     for (int i = startIndex; i < endIndex; i++) {
       KmlPosition position = positions.get(i);
       coordinates.add(createCoordinates(position, false));
     }
   }
   return placemarkType;
 }
Пример #2
0
 private PlacemarkType createMark(int kiloMeter, double longitude, double latitude) {
   ObjectFactory objectFactory = new ObjectFactory();
   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;
 }
Пример #3
0
 private PlacemarkType createSpeedSegment(
     int currentSegment, int speedClass, List<String> coordinates) {
   ObjectFactory objectFactory = new ObjectFactory();
   PlacemarkType placemarkType = objectFactory.createPlacemarkType();
   placemarkType.setName("Segment " + currentSegment);
   placemarkType.setDescription(getSpeedDescription(speedClass));
   placemarkType.setStyleUrl('#' + getSpeedColor(speedClass));
   placemarkType.setVisibility(FALSE);
   LineStringType lineStringType = objectFactory.createLineStringType();
   lineStringType.getCoordinates().addAll(coordinates);
   placemarkType.setAbstractGeometryGroup(objectFactory.createLineString(lineStringType));
   return placemarkType;
 }
Пример #4
0
 private PlacemarkType createRoute(KmlRoute route) {
   ObjectFactory objectFactory = new ObjectFactory();
   PlacemarkType placemarkType = objectFactory.createPlacemarkType();
   placemarkType.setName(ROUTE);
   placemarkType.setDescription(asDescription(route.getDescription()));
   placemarkType.setStyleUrl("#" + ROUTE_LINE_STYLE);
   MultiGeometryType multiGeometryType = objectFactory.createMultiGeometryType();
   placemarkType.setAbstractGeometryGroup(objectFactory.createMultiGeometry(multiGeometryType));
   LineStringType lineStringType = objectFactory.createLineStringType();
   multiGeometryType
       .getAbstractGeometryGroup()
       .add(objectFactory.createLineString(lineStringType));
   List<String> coordinates = lineStringType.getCoordinates();
   for (KmlPosition position : route.getPositions()) {
     coordinates.add(createCoordinates(position, false));
   }
   return placemarkType;
 }
Пример #5
0
 private FolderType createWayPoints(KmlRoute route, int startIndex, int endIndex) {
   ObjectFactory objectFactory = new ObjectFactory();
   FolderType folderType = objectFactory.createFolderType();
   folderType.setName(WAYPOINTS);
   folderType.setDescription(asDescription(route.getDescription()));
   List<KmlPosition> positions = route.getPositions();
   for (int i = startIndex; i < endIndex; i++) {
     KmlPosition position = positions.get(i);
     PlacemarkType placemarkType = objectFactory.createPlacemarkType();
     folderType.getAbstractFeatureGroup().add(objectFactory.createPlacemark(placemarkType));
     placemarkType.setName(asName(isWriteName() ? position.getDescription() : null));
     placemarkType.setDescription(asDesc(isWriteDesc() ? position.getDescription() : null));
     if (position.hasTime()) {
       TimeStampType timeStampType = objectFactory.createTimeStampType();
       timeStampType.setWhen(formatDate(position.getTime()));
       placemarkType.setAbstractTimePrimitiveGroup(objectFactory.createTimeStamp(timeStampType));
     }
     PointType pointType = objectFactory.createPointType();
     placemarkType.setAbstractGeometryGroup(objectFactory.createPoint(pointType));
     pointType.getCoordinates().add(createCoordinates(position, false));
   }
   return folderType;
 }