import { Layout } from "../Layout"; import { DrinkingWater } from "../Layers/DrinkingWater"; import { NatureReserves } from "../Layers/NatureReserves"; import { Park } from "../Layers/Park"; export class WalkByBrussels extends Layout { constructor() { super("walkbybrussels", ["en","fr","nl"], "Drinking Water Spots", [new DrinkingWater(), new Park(), new NatureReserves()], 10, 50.8435, 4.3688, "

Drinking water

\n" + "\n" + "

" + "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"); } }