Type alias ParkingStopLineStyleOption

ParkingStopLineStyleOption: {
    color: Color;
    dashArray?: number[];
    lineCap?: "butt" | "round";
    weight: number;
}

駐停車禁止線のスタイルオプション

Type declaration

  • color: Color

    線の色

    Example

    GIA.value.Color.red()
    
  • Optional dashArray?: number[]

    点線のパターン

    Default

    [] // 実線
    
  • Optional lineCap?: "butt" | "round"

    線分の先端・終端のスタイル

    • 'round': 丸角
    • 'butt': 角なし (頂点数を削減して軽量化)

    Default

    'butt'
    
  • weight: number

    線の太さ(ピクセル)

    Example

    3