2020-07-13 17:16:12 +02:00
|
|
|
import {LayerDefinition} from "../LayerDefinition";
|
2020-07-16 14:21:06 +02:00
|
|
|
import {And, Tag, TagsFilter} from "../../Logic/TagsFilter";
|
2020-07-13 17:16:12 +02:00
|
|
|
import * as L from "leaflet";
|
2020-07-16 15:29:50 +02:00
|
|
|
import BikeStationChain from "../Questions/bike/StationChain";
|
|
|
|
import BikeStationPumpTools from "../Questions/bike/StationPumpTools";
|
|
|
|
import BikeStationStand from "../Questions/bike/StationStand";
|
|
|
|
import PumpManual from "../Questions/bike/PumpManual";
|
|
|
|
import BikeStationOperator from "../Questions/bike/StationOperator";
|
|
|
|
import BikeStationBrand from "../Questions/bike/StationBrand";
|
2020-07-16 09:54:32 +02:00
|
|
|
import FixedText from "../Questions/FixedText";
|
2020-07-16 15:29:50 +02:00
|
|
|
import PumpManometer from "../Questions/bike/PumpManometer";
|
2020-07-16 09:54:32 +02:00
|
|
|
import {ImageCarouselWithUploadConstructor} from "../../UI/Image/ImageCarouselWithUpload";
|
2020-07-16 15:32:32 +02:00
|
|
|
import PumpOperationalStatus from "../Questions/bike/PumpOperationalStatus";
|
|
|
|
import PumpValves from "../Questions/bike/PumpValves";
|
2020-07-16 14:21:06 +02:00
|
|
|
|
|
|
|
|
2020-07-16 15:29:50 +02:00
|
|
|
export default class BikeStations extends LayerDefinition {
|
2020-07-16 14:21:06 +02:00
|
|
|
private readonly pump: TagsFilter = new Tag("service:bicycle:pump", "yes");
|
|
|
|
private readonly tools: TagsFilter = new Tag("service:bicycle:tools", "yes");
|
|
|
|
|
2020-07-13 17:16:12 +02:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.name = "bike station or pump";
|
|
|
|
this.icon = "./assets/wrench.svg";
|
|
|
|
|
|
|
|
this.overpassFilter = new And([
|
|
|
|
new Tag("amenity", "bicycle_repair_station")
|
|
|
|
]);
|
|
|
|
|
|
|
|
this.newElementTags = [
|
|
|
|
new Tag("amenity", "bicycle_repair_station")
|
|
|
|
// new Tag("fixme", "Toegevoegd met MapComplete, geometry nog uit te tekenen")
|
|
|
|
];
|
|
|
|
this.maxAllowedOverlapPercentage = 10;
|
|
|
|
|
|
|
|
this.minzoom = 13;
|
|
|
|
this.style = this.generateStyleFunction();
|
2020-07-16 09:54:32 +02:00
|
|
|
this.title = new FixedText("Bike station");
|
|
|
|
|
2020-07-13 17:16:12 +02:00
|
|
|
this.elementsToShow = [
|
2020-07-16 09:54:32 +02:00
|
|
|
new ImageCarouselWithUploadConstructor(),
|
|
|
|
|
2020-07-13 17:16:12 +02:00
|
|
|
new BikeStationPumpTools(),
|
2020-07-16 14:21:06 +02:00
|
|
|
new BikeStationChain().OnlyShowIf(this.tools),
|
|
|
|
new BikeStationStand().OnlyShowIf(this.tools),
|
2020-07-16 09:54:32 +02:00
|
|
|
|
2020-07-16 14:21:06 +02:00
|
|
|
new PumpManual().OnlyShowIf(this.pump),
|
2020-07-16 15:29:50 +02:00
|
|
|
new PumpManometer().OnlyShowIf(this.pump),
|
2020-07-16 15:32:32 +02:00
|
|
|
new PumpValves().OnlyShowIf(this.pump),
|
|
|
|
new PumpOperationalStatus().OnlyShowIf(this.pump),
|
2020-07-16 09:54:32 +02:00
|
|
|
|
2020-07-13 17:16:12 +02:00
|
|
|
new BikeStationOperator(),
|
2020-07-16 15:29:50 +02:00
|
|
|
// new BikeStationBrand() DISABLED
|
2020-07-13 17:16:12 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
private generateStyleFunction() {
|
|
|
|
const self = this;
|
|
|
|
return function (properties: any) {
|
2020-07-16 14:21:06 +02:00
|
|
|
const onlyPump = self.pump.matchesProperties(properties) &&
|
|
|
|
!self.tools.matchesProperties(properties)
|
2020-07-13 17:16:12 +02:00
|
|
|
const iconUrl = onlyPump ? "./assets/pump.svg" : "./assets/wrench.svg"
|
|
|
|
return {
|
|
|
|
color: "#00bb00",
|
2020-07-16 15:29:50 +02:00
|
|
|
icon: L.icon({
|
2020-07-13 17:16:12 +02:00
|
|
|
iconUrl: iconUrl,
|
|
|
|
iconSize: [40, 40]
|
|
|
|
})
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
2020-07-16 15:29:50 +02:00
|
|
|
}
|