Compare commits

..

4 commits

Author SHA1 Message Date
Tobias
45023d0cb8
Add unsearchable highway=path+path=crossing+crossing=informal 2025-04-20 18:37:24 +02:00
Tobias
09cae467b9
Add unsearchable highway=footway+footway=crossing+crossing=informal 2025-04-20 18:36:14 +02:00
Tobias
20210e09b9
Fix crossing=informal
It looks like SC actually does not tag this as `highway=crossing`
2025-04-20 18:16:55 +02:00
Tobias
9d1a46d241
Make crossing=informal unsearchable
The `terms` are not used by iD but maybe other editors use them.
2025-04-20 18:09:56 +02:00
3 changed files with 54 additions and 5 deletions

View file

@ -9,14 +9,15 @@
"tags": {
"crossing": "informal"
},
"reference": {
"key": "crossing",
"value": "informal"
},
"terms": [
"informal crosswalk",
"informal foot path crossing",
"informal pedestrian crossing"
],
"name": "Informal Crossing"
"reference": {
"key": "crossing",
"value": "informal"
},
"name": "Informal Crossing",
"searchable": false
}

View file

@ -0,0 +1,24 @@
{
"icon": "temaki-pedestrian",
"fields": [
"crossing",
"surface"
],
"moreFields": [
"{@templates/crossing/geometry_way_more}"
],
"geometry": [
"line"
],
"tags": {
"highway": "footway",
"footway": "crossing",
"crossing": "informal"
},
"reference": {
"key": "crossing",
"value": "informal"
},
"name": "{highway/crossing/informal}",
"searchable": false
}

View file

@ -0,0 +1,24 @@
{
"icon": "temaki-pedestrian",
"fields": [
"crossing",
"surface"
],
"moreFields": [
"{@templates/crossing/geometry_way_more}"
],
"geometry": [
"line"
],
"tags": {
"highway": "path",
"path": "crossing",
"crossing": "informal"
},
"reference": {
"key": "crossing",
"value": "informal"
},
"name": "{highway/crossing/informal}",
"searchable": false
}