import {TagRenderingOptions} from "../TagRendering";
import {Tag} from "../../Logic/TagsFilter";
export class BikeParkingType extends TagRenderingOptions {
private static options = {
priority: 5,
question: "Van welk type is deze fietsenparking?",
freeform: {
key: "bicycle_parking",
extraTags: new Tag("fixme", "Freeform bicycle_parking= tag used: possibly a wrong value"),
template: "Iets anders: $$$",
renderTemplate: "Dit is een fietsenparking van het type: {bicycle_parking}",
placeholder: "Specifieer"
},
mappings: [
{k: new Tag("bicycle_parking", "stands"), txt: ""},
{k: new Tag("bicycle_parking", "wall_loops"), txt: ""},
{k: new Tag("bicycle_parking", "handlebar_holder"), txt: ""},
{k: new Tag("bicycle_parking", "shed"), txt: ""},
{k: new Tag("bicycle_parking", "two-tier"), txt: ""}
]
}
constructor() {
super(BikeParkingType.options);
}
}