mirror of
https://github.com/enzet/map-machine.git
synced 2025-05-04 12:46:41 +02:00
Rewrite speed limit icon specificatons.
Use new offset feature.
This commit is contained in:
parent
8d9b1e93fb
commit
64df53ddfb
1 changed files with 20 additions and 4 deletions
|
@ -692,13 +692,29 @@ node_icons:
|
|||
- tags: {traffic_sign: city_limit}
|
||||
icon: [city_limit_sign]
|
||||
- tags: {traffic_sign: maxspeed, maxspeed: "30"}
|
||||
icon: [circle_30]
|
||||
icon: [
|
||||
circle_11,
|
||||
{shape: digit_3, offset: [-2, 0], color: "#FFFFFF"},
|
||||
{shape: digit_0, offset: [2, 0], color: "#FFFFFF"},
|
||||
]
|
||||
- tags: {traffic_sign: maxspeed, maxspeed: "40"}
|
||||
icon: [circle_40]
|
||||
icon: [
|
||||
circle_11,
|
||||
{shape: digit_4, offset: [-2, 0], color: "#FFFFFF"},
|
||||
{shape: digit_0, offset: [2, 0], color: "#FFFFFF"},
|
||||
]
|
||||
- tags: {traffic_sign: maxspeed, maxspeed: "50"}
|
||||
icon: [circle_50]
|
||||
icon: [
|
||||
circle_11,
|
||||
{shape: digit_5, offset: [-2, 0], color: "#FFFFFF"},
|
||||
{shape: digit_0, offset: [2, 0], color: "#FFFFFF"},
|
||||
]
|
||||
- tags: {traffic_sign: maxspeed, maxspeed: "40_mph"}
|
||||
icon: [speed_limit_40_mph]
|
||||
icon: [
|
||||
speed_limit_mph,
|
||||
{shape: digit_4, offset: [-2, 2]},
|
||||
{shape: digit_0, offset: [2, 2]},
|
||||
]
|
||||
- tags: {traffic_sign: stop}
|
||||
icon: [stop]
|
||||
- tags: {highway: give_way}
|
||||
|
|
Loading…
Add table
Reference in a new issue