mapcomplete/assets/layers/left_right_style/left_right_style.json

35 lines
738 B
JSON
Raw Normal View History

2021-10-22 18:53:07 +02:00
{
2021-11-07 15:44:22 +01:00
"id": "left_right_style",
2021-11-08 02:36:01 +01:00
"description": "Special meta-style which will show one single line, either on the left or on the right depending on the id. This is used in the small popups with left_right roads. Cannot be included in a theme",
2021-11-07 15:44:22 +01:00
"source": {
"osmTags": {
"or": [
"id=left",
"id=right"
]
}
},
"mapRendering": [
{
"width": 15,
"color": {
"render": "#ff000088",
"mappings": [
{
"if": "id=left",
"then": "#0000ff88"
}
]
},
"offset": {
"render": "-15",
"mappings": [
{
"if": "id=right",
"then": "15"
}
]
}
}
]
2021-10-22 18:53:07 +02:00
}