2020-07-18 20:40:51 +02:00
|
|
|
import {Layout} from "../Layout";
|
|
|
|
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",
|
2020-09-03 19:05:18 +02:00
|
|
|
["birdhides", new InformationBoard(), new NatureReserves(true), "drinking_water"],
|
2020-07-18 20:40:51 +02:00
|
|
|
12,
|
|
|
|
51.20875,
|
|
|
|
3.22435,
|
2020-08-07 20:50:46 +02:00
|
|
|
"<h3>Natuurstuff</h3>Geef meer gegevens over natuurgebieden en hun infoborden",
|
2020-07-18 20:40:51 +02:00
|
|
|
"",
|
|
|
|
""
|
|
|
|
);
|
2020-09-03 19:05:18 +02:00
|
|
|
this.icon = "./assets/layers/bird_hide/birdhide.svg"
|
2020-07-18 20:40:51 +02:00
|
|
|
}
|
|
|
|
}
|