AircraftJsonFullCoordinates Property |
Gets or sets a list of coordinates representing the full trail for the aircraft. If
ResetTrail
is true then it is the entire trail, otherwise it extends the existing trail.
Namespace: VirtualRadar.Interface.WebSiteAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public List<Nullable<double>> FullCoordinates { get; set; }
Public Property FullCoordinates As List(Of Nullable(Of Double))
Get
Set
public:
property List<Nullable<double>>^ FullCoordinates {
List<Nullable<double>>^ get ();
void set (List<Nullable<double>>^ value);
}
member FullCoordinates : List<Nullable<float>> with get, set
Property Value
Type:
ListNullableDoubleRemarks
This is a set of 3-tuples - latitude, longitude and the heading. If
TrailType is 'a' or 's'
then it's a set of 4-tuples, with altitude or speed being added to the end of the tuple.
See Also