2020-07-16 15:29:50 +02:00
|
|
|
import {TagRenderingOptions} from "../../TagRendering";
|
|
|
|
import {Tag} from "../../../Logic/TagsFilter";
|
2020-07-20 23:43:42 +02:00
|
|
|
import Translations from "../../../UI/i18n/Translations";
|
2020-07-16 15:29:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
export default class BikeStationStand extends TagRenderingOptions {
|
|
|
|
constructor() {
|
2020-07-20 23:43:42 +02:00
|
|
|
const to = Translations
|
2020-07-16 15:29:50 +02:00
|
|
|
super({
|
|
|
|
priority: 10,
|
|
|
|
question: "Does this bike station have a hook to suspend your bike with or a stand to elevate it?",
|
|
|
|
mappings: [
|
2020-07-20 23:43:42 +02:00
|
|
|
{k: new Tag("service:bicycle:stand", "yes"), txt: "There is a hook or stand"},
|
2020-07-16 15:29:50 +02:00
|
|
|
{k: new Tag("service:bicycle:stand", "no"), txt: "There is no hook or stand"},
|
|
|
|
]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|