| Property | Defined by | ||
|---|---|---|---|
| angle : Number [read-only]
The angle formed with the center of the earth.
| Geodesic | ||
| distance : DistanceResult
[read-only]
Distance
| Geodesic | ||
| pointOne : LatLon
[read-only]
The starting point of the geodesic.
| Geodesic | ||
| pointTwo : LatLon
[read-only]
The ending point of the geodesic.
| Geodesic | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new Geodesic.
| Geodesic | ||
|
Returns a LatLon object at a position along the geodesic.
| Geodesic | ||
| Constant | Defined by | ||
|---|---|---|---|
| EARTH_CIRCUMFERENCE : Number = 40000000 [static]
The circumference of Earth in meters.
| Geodesic | ||
| EARTH_RADIUS : Number = 6366197.7236758135 [static]
The radius of Earth in meters.
| Geodesic | ||
| angle | property |
angle:Number [read-only]The angle formed with the center of the earth.
Implementation public function get angle():Number
| distance | property |
distance:DistanceResult [read-only]Distance
Implementation public function get distance():DistanceResult
| pointOne | property |
pointOne:LatLon [read-only]The starting point of the geodesic.
Implementation public function get pointOne():LatLon
| pointTwo | property |
pointTwo:LatLon [read-only]The ending point of the geodesic.
Implementation public function get pointTwo():LatLon
| Geodesic | () | constructor |
public function Geodesic(pointOne:LatLon, pointTwo:LatLon)Creates a new Geodesic.
ParameterspointOne:LatLon |
|
pointTwo:LatLon |
| getPoint | () | method |
public function getPoint(position:Number):LatLonReturns a LatLon object at a position along the geodesic.
Parametersposition:Number — A floating-point number from 0.0 to 1.0 that determines the point along the geodesic.
|
LatLon |
| EARTH_CIRCUMFERENCE | constant |
public static const EARTH_CIRCUMFERENCE:Number = 40000000The circumference of Earth in meters.
| EARTH_RADIUS | constant |
public static const EARTH_RADIUS:Number = 6366197.7236758135The radius of Earth in meters.