PerLevelRouteStyle

open class PerLevelRouteStyle : NSObject

PerLevelRouteStyle 단위 클래스.

Level별 Route Style을 구성할 때 사용한다.

Initializer

  • Initializer

    Declaration

    Swift

    @objc
    public init(width: UInt, color: UIColor, strokeWidth: UInt, strokeColor: UIColor, level: Int, patternIndex: Int = -1)

    Parameters

    width

    Route Width

    color

    rotue Color

    strokeWidth

    Route의 외곽선 두께

    strokeColor

    Route의 외곽선 색깔

    level

    해당 단위 스타일이 표출될 레벨

    patternIndex

    추가한 패턴의 인덱스

  • Initializer

    Declaration

    Swift

    @objc
    public convenience init(width: UInt, color: UIColor, level: Int, patternIndex: Int = -1)

    Parameters

    width

    Route Width

    color

    rotue Color

    level

    해당 단위 스타일이 표출될 레벨

    patternIndex

    추가한 패턴의 인덱스

Properties

  • Route의 두께.

    Declaration

    Swift

    @objc
    public var width: UInt { get }
  • Route의 색깔

    Declaration

    Swift

    @objc
    public var color: UIColor { get }
  • Route의 외곽선 두께

    Declaration

    Swift

    @objc
    public var strokeWidth: UInt { get }
  • Route의 외곽선 색깔

    Declaration

    Swift

    @objc
    public var strokeColor: UIColor { get }
  • 스타일이 표출될 레벨

    Declaration

    Swift

    @objc
    public var level: Int { get }
  • 추가한 패턴의 인덱스

    Declaration

    Swift

    @objc
    public var patternIndex: Int { get }