mirror of
https://github.com/openstreetmap/id-tagging-schema.git
synced 2025-10-26 20:33:51 +01:00
Add Length Limit and Axle Weight Limit fields (#911)
This commit is contained in:
parent
9b04f30fae
commit
f8ecdeb4a8
16 changed files with 44 additions and 5 deletions
10
data/fields/maxaxleload_bridge.json
Normal file
10
data/fields/maxaxleload_bridge.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"key": "maxaxleload",
|
||||
"type": "combo",
|
||||
"label": "Axle Weight Limit",
|
||||
"snake_case": false,
|
||||
"prerequisiteTag": {
|
||||
"key": "bridge",
|
||||
"valueNot": "no"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,9 @@
|
|||
{
|
||||
"key": "maxheight",
|
||||
"type": "roadheight",
|
||||
"label": "Max Height",
|
||||
"label": "Height Limit",
|
||||
"terms": [
|
||||
"clearance"
|
||||
],
|
||||
"snake_case": false
|
||||
}
|
||||
|
|
|
|||
6
data/fields/maxlength.json
Normal file
6
data/fields/maxlength.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"key": "maxlength",
|
||||
"type": "roadheight",
|
||||
"label": "Length Limit",
|
||||
"snake_case": false
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"key": "maxstay",
|
||||
"type": "combo",
|
||||
"label": "Max Stay",
|
||||
"label": "Time Limit",
|
||||
"options": [
|
||||
"15 minutes",
|
||||
"30 minutes",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"key": "maxweight",
|
||||
"type": "combo",
|
||||
"label": "Max Weight",
|
||||
"label": "Weight Limit",
|
||||
"snake_case": false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"key": "maxwidth",
|
||||
"type": "roadheight",
|
||||
"label": "Max Width",
|
||||
"label": "Width Limit",
|
||||
"snake_case": false
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue