Examples of Waypoint


Examples of org.openstreetmap.josm.data.gpx.WayPoint

        }
    }

    @Override
    public WayPoint convertToWayPoint() {
        WayPoint wpt = super.convertToWayPoint();
        GpxLink link = new GpxLink(webUrl.toString());
        link.type = "web";
        wpt.attr.put(GpxConstants.META_LINKS, Collections.singleton(link));
        return wpt;
    }
View Full Code Here

Examples of org.spoutcraft.client.gui.minimap.Waypoint

  public void run(int playerId) {
    if (!death) {
      MinimapConfig.getInstance().addServerWaypoint(x, y, z, name);
    } else {
      Waypoint point = new Waypoint("Death " + new SimpleDateFormat("dd-MM-yyyy").format(new Date()), (int)x, (int)y, (int)z, true);
      point.deathpoint = true;
      MinimapConfig.getInstance().addWaypoint(point);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.