forked from MapComplete/MapComplete
Restructure layer, added barrier basics
This commit is contained in:
parent
fed2936336
commit
7a73f6416b
4 changed files with 299 additions and 186 deletions
12
Svg.ts
12
Svg.ts
File diff suppressed because one or more lines are too long
10
assets/svg/barrier.svg
Normal file
10
assets/svg/barrier.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="st0" d="m128 64a64 64 0 0 1-64 64 64 64 0 0 1-64-64 64 64 0 0 1 64-64 64 64 0 0 1 64 64" fill="#529add"/>
|
||||
<path d="m31.992 32.08v87.273a64 64 0 0 0 16 6.5293v-93.803z" fill="#666"/>
|
||||
<path d="m79.992 32.08v93.84a64 64 0 0 0 16-6.582v-87.258z" fill="#666"/>
|
||||
<path d="m23.992 44.08c-4.456 0-8.0429 3.587-8.0429 8.043v31.914c0 4.456 3.5869 8.043 8.0429 8.043h79.914c4.456 0 8.043-3.587 8.043-8.043v-31.914c0-4.456-3.587-8.043-8.043-8.043z" fill-opacity=".2"/>
|
||||
<path d="m24.036 40.08h79.913c4.456 0 8.0433 3.5873 8.0433 8.0433v31.913c0 4.456-3.5873 8.0433-8.0433 8.0433h-79.913c-4.456 0-8.0433-3.5873-8.0433-8.0433v-31.913c0-4.456 3.5873-8.0433 8.0433-8.0433z" fill="#fff" style="paint-order:normal"/>
|
||||
<path d="m23.992 40.08c-3.8167 0-6.9867 2.6476-7.7949 6.2129l28.746 41.787h14.143l-32.332-48zm16.619 0 32.332 48h14.143l-32.332-48zm28 0 32.332 48h3.0488c3.6926 0 6.7759-2.4795 7.7051-5.8691l-28.943-42.131zm28 0 15.381 22v-14c0-4.432-3.568-8-8-8zm-80.619 26v14c0 4.432 3.568 8 8 8h7.0938z" fill="#dd2e44" style="paint-order:normal"/>
|
||||
<path d="m24.03 40.08h79.924c4.4531 0 8.038 3.5849 8.038 8.038v31.924c0 4.453-3.5849 8.038-8.038 8.038h-79.924c-4.4531 0-8.038-3.5849-8.038-8.038v-31.924c0-4.453 3.5849-8.038 8.038-8.038z" fill="none" stroke="#555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" style="paint-order:stroke markers fill"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -79,6 +79,16 @@
|
|||
"license": "CC0",
|
||||
"sources": []
|
||||
},
|
||||
{
|
||||
"authors": [
|
||||
"westnordost"
|
||||
],
|
||||
"path": "barrier.svg",
|
||||
"license": "GPL-3.0",
|
||||
"sources": [
|
||||
"https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/quest%20icons/barrier.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"authors": [
|
||||
"Github"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"en": "Cycleways",
|
||||
"nl": "Fietspaden"
|
||||
},
|
||||
"minzoom": 12,
|
||||
"minzoom": 14,
|
||||
"source": {
|
||||
"osmTags": {
|
||||
"or": [
|
||||
|
@ -77,6 +77,66 @@
|
|||
},
|
||||
"description": {},
|
||||
"tagRenderings": [
|
||||
{
|
||||
"freeform": {
|
||||
"key": "cycleway",
|
||||
"addExtraTags": []
|
||||
},
|
||||
"question": {
|
||||
"en": "What kind of cycleway is there?",
|
||||
"nl": "Wat voor fietspad is hier?"
|
||||
},
|
||||
"condition": "highway!=cycleway",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "cycleway=shared_lane",
|
||||
"then": {
|
||||
"en": "There is a shared lane",
|
||||
"nl": "Er is een fietssugestiestrook"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=lane",
|
||||
"then": {
|
||||
"en": "There is a lane next to the road (seperated with paint)",
|
||||
"nl": "Er is een fietspad aangrenzend aan de weg (gescheiden met verf)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=track",
|
||||
"then": {
|
||||
"en": "There is a track, but no cycleway drawn seperately from this road on the map.",
|
||||
"nl": "Er is een fietspad (los van de weg), maar geen fietspad afzonderlijk getekend naast deze weg."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=seperate",
|
||||
"then": {
|
||||
"en": "There is a seperately drawn cycleway",
|
||||
"nl": "Er is een apart getekend fietspad."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cyclestreet=yes",
|
||||
"then": {
|
||||
"nl": "Dit is een fietsstraat.",
|
||||
"en": "This is a cyclestreet."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=",
|
||||
"then": {
|
||||
"en": "There is no cycleway",
|
||||
"nl": "Er is geen fietspad"
|
||||
},
|
||||
"hideInAnswer": true
|
||||
}
|
||||
],
|
||||
"render": {
|
||||
"en": "Unknown cycleway situation",
|
||||
"nl": "Onbekende fietspad situatie"
|
||||
}
|
||||
},
|
||||
{
|
||||
"render": {
|
||||
"en": "The maximum speed on this road is {maxspeed} km/h",
|
||||
|
@ -269,6 +329,124 @@
|
|||
"en": "What is the carriage width of this road (in meters)?",
|
||||
"nl": "Hoe breed is de rijbaan in deze straat (in meters)?"
|
||||
}
|
||||
},
|
||||
{
|
||||
"render": {
|
||||
"en": "This road has the smoothness {smoothness}",
|
||||
"nl": "Deze weg heeft de kwaliteit {smoothness}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "smoothness",
|
||||
"addExtraTags": []
|
||||
},
|
||||
"condition": {
|
||||
"or": ["cycleway=no", "highway=cycleway"]
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "smoothness=excellent",
|
||||
"then": {
|
||||
"en": "Thin Rollers: rollerblade, skateboard"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=good",
|
||||
"then": {
|
||||
"en": "Thin Wheels: racing bike"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=intermediate",
|
||||
"then": {
|
||||
"en": "Wheels: city bike, wheelchair, scooter"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=bad",
|
||||
"then": {
|
||||
"en": "Robust Wheels: trekking bike, car, rickshaw"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=very_bad",
|
||||
"then": {
|
||||
"en": "High Clearance: light duty off-road vehicle"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=horrible",
|
||||
"then": {
|
||||
"en": "Off-Road: heavy duty off-road vehicle"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=very_horrible",
|
||||
"then": {
|
||||
"en": "Specialized off-road: tractor, ATV"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=impassable",
|
||||
"then": {
|
||||
"en": "Impassable / No wheeled vehicle"
|
||||
}
|
||||
}
|
||||
],
|
||||
"question": {
|
||||
"en": "What is the smoothness of this street?",
|
||||
"nl": "Wat is de kwaliteit van deze straat?"
|
||||
}
|
||||
},
|
||||
{
|
||||
"render": {
|
||||
"en": "This road is made of {surface}",
|
||||
"nl": "Deze weg is gemaakt van {surface}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "surface",
|
||||
"addExtraTags": []
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "surface=wood",
|
||||
"then": {
|
||||
"en": "This street is made of wood",
|
||||
"nl": "Deze weg is gemaakt van hout"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=concrete",
|
||||
"then": {
|
||||
"en": "This street is made of concrete",
|
||||
"nl": "Deze straat is gemaakt van beton"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=cobblestone",
|
||||
"then": {
|
||||
"en": "This street is made of cobblestone",
|
||||
"nl": "Deze straat is gemaakt van kasseien"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=asphalt",
|
||||
"then": {
|
||||
"en": "This street is made of asphalt",
|
||||
"nl": "Deze straat is gemaakt van asfalt"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=paved",
|
||||
"then": {
|
||||
"en": "This street is paved",
|
||||
"nl": "Deze straat is geplaveid"
|
||||
}
|
||||
}
|
||||
],
|
||||
"question": {
|
||||
"en": "What is the surface of the street made from?",
|
||||
"nl": "Waaruit is het oppervlak van de straat gemaakt?"
|
||||
}
|
||||
}
|
||||
],
|
||||
"hideUnderlayingFeaturesMinPercentage": 0,
|
||||
|
@ -325,7 +503,7 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"minzoom": 18,
|
||||
"minzoom": 19,
|
||||
"wayHandling": 0,
|
||||
"title": {
|
||||
"render": {
|
||||
|
@ -345,189 +523,94 @@
|
|||
"render": "#aaaaaa",
|
||||
"mappings": []
|
||||
},
|
||||
"tagRenderings": [
|
||||
{
|
||||
"freeform": {
|
||||
"key": "cycleway",
|
||||
"addExtraTags": []
|
||||
},
|
||||
"question": {
|
||||
"en": "Is there a cycleway?",
|
||||
"nl": "Is er een fietspad?"
|
||||
},
|
||||
"condition": "highway!=cycleway",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "cycleway=shared_lane",
|
||||
"then": {
|
||||
"en": "There is a shared lane",
|
||||
"nl": "Er is een fietssugestiestrook"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=lane",
|
||||
"then": {
|
||||
"en": "There is a lane next to the road (seperated with paint)",
|
||||
"nl": "Er is een fietspad aangrenzend aan de weg (gescheiden met verf)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=track",
|
||||
"then": {
|
||||
"en": "There is a track, but no cycleway drawn seperately from this road on the map.",
|
||||
"nl": "Er is een fietspad (los van de weg), maar geen fietspad afzonderlijk getekend naast deze weg."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=seperate",
|
||||
"then": {
|
||||
"en": "There is a seperately drawn cycleway",
|
||||
"nl": "Er is een apart getekend fietspad."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cyclestreet=yes",
|
||||
"then": {
|
||||
"nl": "Dit is een fietsstraat.",
|
||||
"en": "This is a cyclestreet."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=",
|
||||
"then": {
|
||||
"en": "There is no cycleway",
|
||||
"nl": "Er is geen fietspad"
|
||||
},
|
||||
"hideInAnswer": true
|
||||
}
|
||||
],
|
||||
"render": {
|
||||
"en": "Unknown cycleway situation",
|
||||
"nl": "Onbekende fietspad situatie"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "barriers",
|
||||
"name": {
|
||||
"en": "Barriers",
|
||||
"nl": "Barrières"
|
||||
},
|
||||
"description": {
|
||||
"en": "Obstacles while cycling, such as bollards and cycle barriers",
|
||||
"nl": "Hindernissen tijdens het fietsen, zoals paaltjes en fietshekjes"
|
||||
},
|
||||
"source": {
|
||||
"osmTags": {
|
||||
"or": ["barrier=bollard", "barrier=cycle_barrier"]
|
||||
}
|
||||
},
|
||||
"minzoom": 14,
|
||||
"title": {
|
||||
"render": {
|
||||
"en": "Barrier",
|
||||
"nl": "Barrière"
|
||||
}
|
||||
},
|
||||
"icon": "./assets/svg/barrier.svg",
|
||||
"width": "5",
|
||||
"tagRenderings": []
|
||||
}
|
||||
],
|
||||
"overrideAll": {
|
||||
"+tagRenderings": [
|
||||
{
|
||||
"freeform": {
|
||||
"key": "cycleway",
|
||||
"addExtraTags": []
|
||||
},
|
||||
"question": {
|
||||
"en": "Is there a cycleway?",
|
||||
"nl": "Is er een fietspad?"
|
||||
},
|
||||
"condition": "highway!=cycleway",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "cycleway=shared_lane",
|
||||
"then": {
|
||||
"en": "There is a shared lane",
|
||||
"nl": "Er is een fietssugestiestrook"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=lane",
|
||||
"then": {
|
||||
"en": "There is a lane next to the road (seperated with paint)",
|
||||
"nl": "Er is een fietspad aangrenzend aan de weg (gescheiden met verf)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=track",
|
||||
"then": {
|
||||
"en": "There is a track, but no cycleway drawn seperately from this road on the map.",
|
||||
"nl": "Er is een fietspad (los van de weg), maar geen fietspad afzonderlijk getekend naast deze weg."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=seperate",
|
||||
"then": {
|
||||
"en": "There is a seperately drawn cycleway",
|
||||
"nl": "Er is een apart getekend fietspad."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cyclestreet=yes",
|
||||
"then": {
|
||||
"nl": "Dit is een fietsstraat.",
|
||||
"en": "This is a cyclestreet."
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "cycleway=",
|
||||
"then": {
|
||||
"en": "There is no cycleway",
|
||||
"nl": "Er is geen fietspad"
|
||||
},
|
||||
"hideInAnswer": true
|
||||
}
|
||||
],
|
||||
"render": {
|
||||
"en": "Unknown cycleway situation",
|
||||
"nl": "Onbekende fietspad situatie"
|
||||
}
|
||||
},
|
||||
{
|
||||
"render": {
|
||||
"en": "This road has the smoothness {smoothness}",
|
||||
"nl": "Deze weg heeft de kwaliteit {smoothness}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "smoothness",
|
||||
"addExtraTags": []
|
||||
},
|
||||
"condition": {
|
||||
"or": ["cycleway=no", "highway=cycleway"]
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "smoothness=excellent",
|
||||
"then": {
|
||||
"en": "Thin Rollers: rollerblade, skateboard"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=good",
|
||||
"then": {
|
||||
"en": "Thin Wheels: racing bike"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=intermediate",
|
||||
"then": {
|
||||
"en": "Wheels: city bike, wheelchair, scooter"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=bad",
|
||||
"then": {
|
||||
"en": "Robust Wheels: trekking bike, car, rickshaw"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=very_bad",
|
||||
"then": {
|
||||
"en": "High Clearance: light duty off-road vehicle"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=horrible",
|
||||
"then": {
|
||||
"en": "Off-Road: heavy duty off-road vehicle"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=very_horrible",
|
||||
"then": {
|
||||
"en": "Specialized off-road: tractor, ATV"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "smoothness=impassable",
|
||||
"then": {
|
||||
"en": "Impassable / No wheeled vehicle"
|
||||
}
|
||||
}
|
||||
],
|
||||
"question": {
|
||||
"en": "What is the smoothness of this street?",
|
||||
"nl": "Wat is de kwaliteit van deze straat?"
|
||||
}
|
||||
},
|
||||
{
|
||||
"render": {
|
||||
"en": "This road is made of {surface}",
|
||||
"nl": "Deze weg is gemaakt van {surface}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "surface",
|
||||
"addExtraTags": []
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "surface=wood",
|
||||
"then": {
|
||||
"en": "This street is made of wood",
|
||||
"nl": "Deze weg is gemaakt van hout"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=concrete",
|
||||
"then": {
|
||||
"en": "This street is made of concrete",
|
||||
"nl": "Deze straat is gemaakt van beton"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=cobblestone",
|
||||
"then": {
|
||||
"en": "This street is made of cobblestone",
|
||||
"nl": "Deze straat is gemaakt van kasseien"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=asphalt",
|
||||
"then": {
|
||||
"en": "This street is made of asphalt",
|
||||
"nl": "Deze straat is gemaakt van asfalt"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "surface=paved",
|
||||
"then": {
|
||||
"en": "This street is paved",
|
||||
"nl": "Deze straat is geplaveid"
|
||||
}
|
||||
}
|
||||
],
|
||||
"question": {
|
||||
"en": "What is the surface of the street made from?",
|
||||
"nl": "Waaruit is het oppervlak van de straat gemaakt?"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue