import { Layout } from "../Layout"; import { DrinkingWaterLayer } from "../Layers/DrinkingWater"; import { NatureReserves } from "../Layers/NatureReserves"; import { Park } from "../Layers/Park"; import { BikeParkings } from "../Layers/BikeParkings"; export class WalkByBrussels extends Layout { constructor() { super("walkbybrussels", "Drinking Water Spots", [new DrinkingWaterLayer(), new BikeParkings(), new Park(), new NatureReserves()], 10, 50.8435, 4.3688, "
" + "Help with creating a map of drinking water points!" , "
Start by creating an account\n" + " or by " + " logging in.
", "Start by clicking a pin and answering the questions"); } }