mapcomplete/Customizations/Layers/BikeStations.ts

91 lines
3.7 KiB
TypeScript
Raw Normal View History

import {LayerDefinition} from "../LayerDefinition";
2020-07-16 14:08:51 +00:00
import {And, Tag, TagsFilter, Or} from "../../Logic/TagsFilter";
import * as L from "leaflet";
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 07:54:32 +00:00
import FixedText from "../Questions/FixedText";
import PumpManometer from "../Questions/bike/PumpManometer";
2020-07-16 07:54:32 +00:00
import {ImageCarouselWithUploadConstructor} from "../../UI/Image/ImageCarouselWithUpload";
2020-07-16 13:56:10 +00:00
import PumpOperational from "../Questions/bike/PumpOperational";
2020-07-16 13:32:32 +00:00
import PumpValves from "../Questions/bike/PumpValves";
2020-07-20 21:43:42 +00:00
import Translations from "../../UI/i18n/Translations";
2020-07-16 12:21:06 +00:00
export default class BikeStations extends LayerDefinition {
2020-07-16 14:08:51 +00:00
private readonly pump = new Tag("service:bicycle:pump", "yes");
private readonly pumpOperationalAny = new Tag("service:bicycle:pump:operational_status", "yes");
2020-07-17 10:00:52 +00:00
private readonly pumpOperationalOk = new Or([new Tag("service:bicycle:pump:operational_status", "yes"), new Tag("service:bicycle:pump:operational_status", "operational"), new Tag("service:bicycle:pump:operational_status", "ok"), new Tag("service:bicycle:pump:operational_status", "")]);
2020-07-16 14:08:51 +00:00
private readonly tools = new Tag("service:bicycle:tools", "yes");
2020-07-16 12:21:06 +00:00
constructor() {
super();
2020-07-21 21:31:41 +00:00
this.name = Translations.t.cyclofix.station.name;
2020-07-22 16:01:16 +00:00
this.icon = "./assets/bike/repair_station_pump.svg";
this.overpassFilter = new And([
new Tag("amenity", "bicycle_repair_station")
]);
this.newElementTags = [
new Tag("amenity", "bicycle_repair_station")
];
this.maxAllowedOverlapPercentage = 10;
this.minzoom = 13;
this.style = this.generateStyleFunction();
2020-07-21 21:31:41 +00:00
this.title = new FixedText(Translations.t.cyclofix.station.title)
2020-07-21 22:50:30 +00:00
this.wayHandling = LayerDefinition.WAYHANDLING_CENTER_AND_WAY
2020-07-16 07:54:32 +00:00
this.elementsToShow = [
2020-07-16 07:54:32 +00:00
new ImageCarouselWithUploadConstructor(),
new BikeStationPumpTools(),
2020-07-16 12:21:06 +00:00
new BikeStationChain().OnlyShowIf(this.tools),
new BikeStationStand().OnlyShowIf(this.tools),
2020-07-16 07:54:32 +00:00
2020-07-16 12:21:06 +00:00
new PumpManual().OnlyShowIf(this.pump),
new PumpManometer().OnlyShowIf(this.pump),
2020-07-16 13:32:32 +00:00
new PumpValves().OnlyShowIf(this.pump),
2020-07-16 13:56:10 +00:00
new PumpOperational().OnlyShowIf(this.pump),
2020-07-16 07:54:32 +00:00
2020-07-20 21:43:42 +00:00
// new BikeStationOperator(),
// new BikeStationBrand() DISABLED
];
}
private generateStyleFunction() {
const self = this;
return function (properties: any) {
2020-07-16 13:56:10 +00:00
const hasPump = self.pump.matchesProperties(properties)
2020-07-17 10:00:52 +00:00
const isOperational = self.pumpOperationalOk.matchesProperties(properties)
2020-07-16 13:56:10 +00:00
const hasTools = self.tools.matchesProperties(properties)
let iconName = "repair_station.svg";
if (hasTools && hasPump && isOperational) {
iconName = "repair_station_pump.svg"
}else if(hasTools){
2020-07-20 15:30:02 +00:00
iconName = "repair_station.svg"
}else if(hasPump){
if (isOperational) {
iconName = "pump.svg"
2020-07-20 15:30:02 +00:00
} else {
iconName = "broken_pump.svg"
2020-07-20 15:30:02 +00:00
}
2020-07-16 13:56:10 +00:00
}
2020-07-16 13:56:10 +00:00
const iconUrl = `./assets/bike/${iconName}`
return {
color: "#00bb00",
icon: L.icon({
iconUrl: iconUrl,
2020-07-20 14:16:22 +00:00
iconSize: [50, 50],
2020-07-24 16:19:37 +00:00
iconAnchor: [25, 50]
})
};
};
}
}