Segment

open class Segment
extension Segment: Equatable
  • p1

    Declaration

    Swift

    public let p1: Coordinate
  • p2

    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 coordinates

    Declaration

    Swift

    public lazy var direction: CLLocationDirection { get set }
  • Declaration

    Swift

    public init(p1: Coordinate, p2: Coordinate)

Hashable

  • Declaration

    Swift

    public func hash(into hasher: inout Hasher)

Equatable

  • Declaration

    Swift

    public static func == (lhs: Segment, rhs: Segment) -> Bool