Change conditions for cyclestreets so that traffic sign hiding works differently

This commit is contained in:
pietervdvn 2021-04-01 17:54:12 +02:00
parent a698e227f5
commit 82fce1606d
2 changed files with 11 additions and 3 deletions

View file

@ -2,7 +2,7 @@ import { Utils } from "../Utils";
export default class Constants {
public static vNumber = "0.6.4a";
public static vNumber = "0.6.4b";
// The user journey states thresholds when a new feature gets unlocked
public static userJourney = {

View file

@ -99,11 +99,19 @@
"source": {
"osmTags": {
"and": [
"cyclestreet=yes",
"traffic_sign="
"cyclestreet=yes"
]
}
},
"isShown": {
"render": "yes",
"mappings": [
{
"if": "id!~way/.*",
"then": "no"
}
]
},
"description": {
"nl": "Een fietsstraat is een straat waar gemotoriseerd verkeer een fietser niet mag inhalen."
},