84 lines
No EOL
2.9 KiB
TypeScript
84 lines
No EOL
2.9 KiB
TypeScript
import {LayerDefinition} from "../LayerDefinition";
|
|
import L from "leaflet";
|
|
import {Tag} from "../../Logic/TagsFilter";
|
|
import {QuestionDefinition} from "../../Logic/Question";
|
|
import {TagRenderingOptions} from "../TagRendering";
|
|
import {NameInline} from "../Questions/NameInline";
|
|
|
|
export class Bookcases extends LayerDefinition {
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "boekenkast";
|
|
this.newElementTags = [new Tag("amenity", "public_bookcase")];
|
|
this.icon = "./assets/bookcase.svg";
|
|
this.overpassFilter = new Tag("amenity", "public_bookcase");
|
|
this.minzoom = 13;
|
|
|
|
this.title = new NameInline("ruilboekenkastje");
|
|
this.elementsToShow = [
|
|
|
|
new TagRenderingOptions(
|
|
{
|
|
question: "Hoeveel boeken passen in dit boekenruilkastje?",
|
|
freeform: {
|
|
renderTemplate: "Er passen {capacity} boeken in dit boekenruilkastje",
|
|
template: "Er passen $$$ boeken in dit boekenruilkastje",
|
|
key: "capacity",
|
|
placeholder: "aantal"
|
|
},
|
|
priority: 15
|
|
}
|
|
)
|
|
|
|
];
|
|
|
|
/* this.questions = [
|
|
QuestionDefinition.noNameOrNameQuestion("Wat is de naam van dit boekenruilkastje?", "Dit boekenruilkastje heeft niet echt een naam", 20),
|
|
QuestionDefinition.textQuestion("Heeft dit boekenkastje een peter, meter of voogd?", "operator", 10),
|
|
// QuestionDefinition.textQuestion("Wie kunnen we (per email) contacteren voor dit boekenruilkastje?", "email", 5),
|
|
|
|
|
|
]
|
|
;
|
|
*/
|
|
|
|
this.style = function (tags) {
|
|
return {
|
|
icon: new L.icon({
|
|
iconUrl: "assets/bookcase.svg",
|
|
iconSize: [40, 40]
|
|
}),
|
|
color: "#0000ff"
|
|
};
|
|
}
|
|
|
|
/*
|
|
this.elementsToShow = [
|
|
|
|
|
|
|
|
new TagMappingOptions({
|
|
key: "name",
|
|
template: "{name}",
|
|
missing: "Boekenruilkastje"
|
|
}
|
|
),
|
|
new TagMappingOptions({key: "capacity", template: "Plaats voor {capacity} boeken"}),
|
|
new TagMappingOptions({key: "operator", template: "Onder de hoede van {operator}"}),
|
|
new TagMappingOptions({
|
|
key: "website",
|
|
mapping: "Meer informatie beschikbaar op <a href='{website}'>{website}</a>"
|
|
}),
|
|
new TagMappingOptions({key: "start_date", template: "Geplaatst op {start_date}"}),
|
|
new TagMappingOptions({key: "brand", template: "Deel van het netwerk {brand}"}),
|
|
new TagMappingOptions({key: "ref", template: "Referentienummer {ref}"}),
|
|
|
|
new TagMappingOptions({key: "description", template: "Extra beschrijving: <br /> <p>{description}</p>"}),
|
|
]
|
|
;*/
|
|
}
|
|
|
|
|
|
} |