Uses of Class
com.oziexplorer.Position

Uses of Position in com.oziexplorer
 

Subclasses of Position in com.oziexplorer
 class BNGGridRef
          This class extends GridRef and provides British National Grid references.
 class GridRef
          This class represents grid references.
 class LatLon
          This class represents (lattitude, longitude coordinates).
 class UserGridRef
          This class provides for grid references in user-specified coordinate systems.
 class UTMGridRef
          This class extends GridRef and provides UTM Grid references.
 

Fields in com.oziexplorer declared as Position
protected  Position Elevation.position
          lat, lon of the position.
protected  Position Event.position
          The position.
protected  Position MapComment.position
          The position of the comment.
protected  Position MapFeature.position
          The feature position.
protected  Position Point.position
          Point position.
protected  Position RoutePoint.position
          The route point number.
protected  Position TrackPoint.position
          The position of the track point.
protected  Position Waypoint.position
          Waypoint position.
 

Methods in com.oziexplorer that return Position
abstract  Position Position.addVector(SpatialVector vector)
          Return a new Position which is offset from the current position by the given vector, specified as a SpatialVector.
static Position OziAPI.convertPositionToDatum(Position fromPosition, String toDatum)
          Convert between map datums.
 Position Elevation.getPosition()
          Return the Position the elevation data is for.
 Position Event.getPosition()
          Get the event position.
 Position MapComment.getPosition()
          Retrieve the Position of the comment.
 Position MapFeature.getPosition()
          Retrieve the feature position.
 Position Point.getPosition()
          Get the position of the point.
 Position RoutePoint.getPosition()
          Get the route point position.
 Position TrackPoint.getPosition()
          Retrieve the track point position.
 Position Waypoint.getPosition()
          Retrieve the Position for the waypoint.
 

Methods in com.oziexplorer with parameters of type Position
static void OziAPI.centerMapAtPosition(Position position)
          Center map at position.
static void OziAPI.centerMapAtPositionWithMark(Position position)
          Center map at position, with mark.
static Position OziAPI.convertPositionToDatum(Position fromPosition, String toDatum)
          Convert between map datums.
static GridRef OziAPI.convertPositionToGridRef(Position fromPosition, Grid toGrid, String toDatum, UserGridDef userGrid)
          Convert between a Position and a GridRef.
static LatLon OziAPI.convertPositionToLatLon(Position fromPosition, String toDatum)
          Convert between a grid reference and lattitude/longitude.
static String OziAPI.findBestMap(Position position, boolean subFolders, String mapPath)
          Find best map for position.
static void OziAPI.findMapAtPosition(Position position)
          Find map at position.
static Elevation OziAPI.getElevation(Position position)
          Get the elevation at the given the position.
static XY OziAPI.getPixelXY(Position position)
          Return the screen (x, y) coordinate representing the position.
static boolean OziAPI.isPositionOnMap(Position position)
          Check if position on map.
static void OziAPI.repositionMapComment(int num, Position position)
          Reposition a MapComment.
static void OziAPI.repositionMapFeature(int number, Position position)
          The MapFeature referred to by the specified number is repositioned to the specified Position.
static void OziAPI.repositionWaypoint(int number, Position position)
          Reposition a Waypoint.
static void OziAPI.repositionWaypoint(Waypoint waypoint, Position position)
          Reposition a Waypoint.
static LatLon LatLon.toWGS84(Position position)
          Create a LatLon object by converting the given Position to the WGS84 datum.
 SpatialVector GridRef.vectorBetween(Position position)
          Return the distance between two positions, in metres.
 SpatialVector LatLon.vectorBetween(Position position)
          Return the distance between two positions as a SpatialVector.
abstract  SpatialVector Position.vectorBetween(Position position)
          Return the distance and bearing between this position and another, as a SpatialVector.
 

Constructors in com.oziexplorer with parameters of type Position
BNGGridRef(Position pos)
          Create a new BNG reference from the specified position.
Event(int number, Position position, int symbol, int mapDisplayFormat, int foreColor, int backColor, int symbolSize)
          Create a new Event.
GridRef(Position pos)
          Create a new grid reference in the default grid and current map datum, converting the given position to the grid and datum.
GridRef(Position position, Grid newGrid, String newDatum)
          Create a new grid reference for the given grid, converting the given position to the specified grid and datum.
LatLon(Position pos)
          Create a LatLon by converting the given Position to a LatLon, using the currently loaded map's datum.
LatLon(Position position, String newDatum)
          Create a latLon object by converting the given Position to the specified datum.
MapComment(String name, Position position)
          Create a new map comment, with default values.
MapComment(String name, Position position, int foreColor, int backColor, int width, int height, int fontSize, int fontStyle)
          Create a new map comment.
MapFeature(String name, Position position, String description)
          Create a new map feature.
MapFeature(String name, Position position, String description, String pictureName, String symbolName, String waypointName)
          Create a new map feature.
Point(Position position, String name, int rotation, String description1, String description2, String description3, double altitude)
          Create a new Point.
RoutePoint(int waypointNumber, String name, Position position, Calendar date, int symbol, int displayFormat, int foreColor, int backColor, String description, int pointerDir, int garminFormat)
          Create a new route point.
TrackPoint(boolean newSection, Position position)
          Create a new track point with an unknown altitude and the current date.
TrackPoint(boolean newSection, Position position, double altitude)
          Create a new track point with a known altitude and the current date.
TrackPoint(boolean newSection, Position position, double altitude, Calendar date)
          Create a new track point.
UTMGridRef(Position pos)
          Create a new UTM reference from the specified Position.
Waypoint(String name, int symbol, Position position)
          Creates a new Waypoint with default parameters.
Waypoint(String name, int symbol, Position position, double altitude, Calendar date, int mapDisplayFormat, int pointerDirection, int garminDisplayFormat, int foreColor, int backColor, int proximityDistance, String description, int fontSize, int fontStyle, int symbolSize)
          Create a new Waypoint with default proximity and attachment information.
Waypoint(String name, int symbol, Position position, double altitude, Calendar date, int mapDisplayFormat, int pointerDirection, int garminDisplayFormat, int foreColor, int backColor, int proximityDistance, String description, int fontSize, int fontStyle, int symbolSize, int proximitySymbolPos, double proximityTime, int proximityRoute, String fileAttachmentName, String proximityFileAttachmentName, String proximitySymbolName)
          Create a new fully-specified Waypoint.