Finishing port of parking layer to json template

This commit is contained in:
Pieter Vander Vennet 2020-09-03 02:18:23 +02:00
parent 5f4c2ec536
commit 9a420efa98
11 changed files with 524 additions and 52 deletions

View file

@ -1,17 +0,0 @@
import {LayerDefinition} from "../LayerDefinition";
import {Tag} from "../../Logic/Tags";
import ParkingCapacityCargo from "../Questions/bike/ParkingCapacityCargo";
export default class BikeParkings extends LayerDefinition {
private readonly accessCargoDesignated = new Tag();
constructor() {
super(undefined);
this.elementsToShow = [
new ParkingCapacityCargo().OnlyShowIf(this.accessCargoDesignated)
//new ParkingOperator(),
];
}
}

View file

@ -1,5 +1,4 @@
import {Layout} from "../Layout";
import BikeParkings from "../Layers/BikeParkings";
import BikeServices from "../Layers/BikeStations";
import BikeShops from "../Layers/BikeShops";
import Translations from "../../UI/i18n/Translations";