ReserveCoordinate

public struct ReserveCoordinate : Equatable

Reserve coordinate.

  • Creates an instance of ReserveCoordinate.

    Declaration

    Swift

    public init(numberCoordinate: UInt, reservedDistance: Bool)

    Parameters

    numberCoordinate

    The number of coordinates to reserve memory for.

    reservedDistance

    If the addCoordinate overload is being used with the distanceAlongLine parameter, setting this to true will reserve additional memory for those distances.

  • The number of coordinates for which memory needs to be reserved.

    Declaration

    Swift

    public let numberCoordinate: UInt
  • If the addCoordinate overload is being used with the distanceAlongLine parameter, setting this to true reserves additional memory for those distances.

    Declaration

    Swift

    public let reservedDistance: Bool