ElectronicHorizonPath
public struct ElectronicHorizonPath : Hashable
Represents the electronic horizon path.
Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
Index of the parent
Path. Null if the path is the most preferred.Declaration
Swift
public var parentPathIndex: Int32? -
Index of the parent
Segmentin parentPath. Null if the path is the most preferred.Declaration
Swift
public var parentSegmentIndex: Int32? -
List of Segments in the path.
Declaration
Swift
public var segments: [ElectronicHorizonPathSegment] -
Probability of the electronic horizon path with 1 is most preferred and 0 is unlikely.
Declaration
Swift
public var probability: Double -
Level of the path. Zero means the most preferred path.
Declaration
Swift
public var level: Int32 -
Creates a new instance.
Declaration
Swift
public init(parentPathIndex: Int32? = nil, parentSegmentIndex: Int32? = nil, segments: [ElectronicHorizonPathSegment], probability: Double, level: Int32)