FlightPath
public struct FlightPath : CodableThe total flight path.
The flight path containing all legs of the flight.  The CoordinatePath objects are arranged in ascending order of leg numbers.
- 
                  
                  The maximum distance from the flight path in miles. DeclarationSwift public var maxDistanceInMiles: Double
- 
                  
                  An ArrayofCoordinatePathobjects representing the flight path.DeclarationSwift public var flightPathCoordinates: [CoordinatePath]
- 
                  
                  The default initializer. DeclarationSwift public init()Return ValueAn initialized FlightPathobject.
- 
                  
                  The initializer with all variables. DeclarationSwift public init(_ maxDistance: Double, _ flightPath: [CoordinatePath])ParametersmaxDistanceA Doublerepresenting the maximum distance from the flight path.flightPathAn ArrayofCoordinatePathobjects representing each leg of the flight path.Return ValueAn initialized FlightPathobject.
 FlightPath Structure Reference
        FlightPath Structure Reference