Segment
open class Segment
extension Segment: Equatable
-
Declaration
Swift
public let p1: Coordinate
-
Declaration
Swift
public let p2: Coordinate
-
Declaration
Swift
public lazy var distance: CLLocationDistance { get set }
-
Declaration
Swift
public lazy var levels: [Float] { get set }
-
Declaration
Swift
public lazy var coordinates: [Coordinate] { get set }
-
Returns the direction from p1.coordinate2D to p2.coordinate2D.
Warning
It doesn’t take into account levels of p1 and p2 coordinatesDeclaration
Swift
public lazy var direction: CLLocationDirection { get set }
-
Declaration
Swift
public init(p1: Coordinate, p2: Coordinate)
-
Declaration
Swift
public func hash(into hasher: inout Hasher)
-
Declaration
Swift
public static func == (lhs: Segment, rhs: Segment) -> Bool