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";
|
|
|
|
|
|
|
|
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",
|
|
|
|
[new Birdhide(), new InformationBoard(), new NatureReserves(true)],
|
|
|
|
12,
|
|
|
|
51.20875,
|
|
|
|
3.22435,
|
|
|
|
"<h3>Natuurpuntstuff</h3>",
|
|
|
|
"",
|
|
|
|
""
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|