2020-07-18 20:40:51 +02:00
|
|
|
import {Layout} from "../Layout";
|
|
|
|
import {Birdhide} from "../Layers/Birdhide";
|
|
|
|
import {InformationBoard} from "../Layers/InformationBoard";
|
|
|
|
import {NatureReserves} from "../Layers/NatureReserves";
|
2020-07-25 18:00:08 +02:00
|
|
|
import {DrinkingWater} from "../Layers/DrinkingWater";
|
2020-07-18 20:40:51 +02:00
|
|
|
|
|
|
|
export class Natuurpunt extends Layout{
|
|
|
|
constructor() {
|
|
|
|
super(
|
|
|
|
"natuurpunt",
|
2020-07-21 00:07:04 +02:00
|
|
|
["nl"],
|
2020-07-18 20:40:51 +02:00
|
|
|
"De natuur in",
|
2020-07-25 18:00:08 +02:00
|
|
|
[new Birdhide(), new InformationBoard(), new NatureReserves(true), new DrinkingWater()],
|
2020-07-18 20:40:51 +02:00
|
|
|
12,
|
|
|
|
51.20875,
|
|
|
|
3.22435,
|
|
|
|
"<h3>Natuurpuntstuff</h3>",
|
|
|
|
"",
|
|
|
|
""
|
|
|
|
);
|
2020-07-26 02:01:34 +02:00
|
|
|
this.icon = "./assets/nature/birdhide.svg"
|
2020-07-18 20:40:51 +02:00
|
|
|
}
|
|
|
|
}
|