58596061626364656667
/** Creates a path with no positions. */ public GfrDirectedPath() { super(); this._measurer = new LengthMeasurer(); this._measurer.setFollowTerrain(this.followTerrain); this._measurer.setPathType(Polyline.GREAT_CIRCLE); }
7879808182838485868788
*/ public GfrDirectedPath(Iterable<? extends Position> positions) { super(); this._measurer = new LengthMeasurer(); this._measurer.setFollowTerrain(this.followTerrain); this._measurer.setPathType(Polyline.GREAT_CIRCLE); this.setPositions(positions); }
100101102103104105106107108109110
*/ public GfrDirectedPath(Position.PositionList positions) { super(); this._measurer = new LengthMeasurer(); this._measurer.setFollowTerrain(this.followTerrain); this._measurer.setPathType(Polyline.GREAT_CIRCLE); if (positions == null) {
126127128129130131132133134135136
*/ public GfrDirectedPath(Position posA, Position posB) { super(); this._measurer = new LengthMeasurer(); this._measurer.setFollowTerrain(this.followTerrain); this._measurer.setPathType(Polyline.GREAT_CIRCLE); if (posA == null || posB == null)