Package | Description |
---|---|
gov.nasa.worldwind.symbology |
Provides classes for creating and displaying graphics from standard symbol sets.
|
gov.nasa.worldwind.symbology.milstd2525 |
Tactical graphics and symbols defined by the MIL-STD-2525 symbology set.
|
gov.nasa.worldwind.symbology.milstd2525.graphics.areas |
MIL-STD-2525 area graphics.
|
gov.nasa.worldwind.symbology.milstd2525.graphics.lines |
MIL-STD-2525 line graphics.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TacticalCircle
An interface for circular tactical graphics.
|
Modifier and Type | Method and Description |
---|---|
TacticalPoint |
TacticalGraphicFactory.createPoint(java.lang.String symbolIdentifier,
Position position,
AVList modifiers)
Create a tactical graphic positioned by a single control point.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<? extends TacticalPoint> |
TacticalRoute.getControlPoints()
Indicates the control points along this route.
|
Modifier and Type | Method and Description |
---|---|
TacticalRoute |
TacticalGraphicFactory.createRoute(java.lang.String symbolIdentifier,
java.lang.Iterable<? extends TacticalPoint> controlPoints,
AVList modifiers)
Create a route graphic.
|
void |
TacticalRoute.setControlPoints(java.lang.Iterable<? extends TacticalPoint> points)
Specifies the control points along this route.
|
Modifier and Type | Class and Description |
---|---|
class |
MilStd2525PointGraphic
Implementation of MIL-STD-2525 point graphics.
|
Modifier and Type | Method and Description |
---|---|
TacticalPoint |
MilStd2525GraphicFactory.createPoint(java.lang.String sidc,
Position position,
AVList params)
Create a tactical graphic positioned by a single control point.
|
Modifier and Type | Method and Description |
---|---|
TacticalRoute |
MilStd2525GraphicFactory.createRoute(java.lang.String sidc,
java.lang.Iterable<? extends TacticalPoint> controlPoints,
AVList modifiers)
Create a route graphic.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractCircularGraphic
Base class for circular area graphics.
|
class |
CircularFireSupportArea
Implementation of circular Fire Support graphics.
|
class |
CircularPositionArea
Implementation of the Position Area for Artillery, Circular graphic (2.X.4.3.2.6.2).
|
Modifier and Type | Class and Description |
---|---|
class |
PullUpPoint
Implementation of the Pull-Up Point (PUP) graphic (2.X.2.2.1.3).
|
class |
RoutePoint
Implementation of aviation route control point graphics.
|
Modifier and Type | Field and Description |
---|---|
protected java.lang.Iterable<? extends TacticalPoint> |
Route.children
Graphics drawn at the route control points.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<? extends TacticalPoint> |
Route.getControlPoints()
Indicates the control points along this route.
|
Modifier and Type | Method and Description |
---|---|
void |
Route.setControlPoints(java.lang.Iterable<? extends TacticalPoint> points)
Specifies the control points along this route.
|