2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
7 package gov
.nasa
.worldwind
;
11 * @version $Id: TrackPoint.java 288 2006-12-07 12:21:49Z tgaskins $
13 public interface TrackPoint
17 void setLatitude(double latitude
);
19 double getLongitude();
21 void setLongitude(double longitude
);
23 double getElevation();
25 void setElevation(double elevation
);
29 void setTime(String time
);