AircraftJsonShortCoordinates Property |
Gets or sets a list of coordinates representing the short 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>> ShortCoordinates { get; set; }
Public Property ShortCoordinates As List(Of Nullable(Of Double))
Get
Set
public:
property List<Nullable<double>>^ ShortCoordinates {
List<Nullable<double>>^ get ();
void set (List<Nullable<double>>^ value);
}
member ShortCoordinates : List<Nullable<float>> with get, set
Property Value
Type:
ListNullableDoubleRemarks
This is a set of 3-tuples - latitude, longitude and the time of the position in Javascript ticks. When
TrailType
is 'a' or 's' then it's a set of 4-tuples, where altitude or speed are added to the end of the tuple.
See Also