22 lines
No EOL
696 B
TypeScript
22 lines
No EOL
696 B
TypeScript
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",
|
|
["nl"],
|
|
"De natuur in",
|
|
[new Birdhide(), new InformationBoard(), new NatureReserves(true), "drinking_water"],
|
|
12,
|
|
51.20875,
|
|
3.22435,
|
|
"<h3>Natuurstuff</h3>Geef meer gegevens over natuurgebieden en hun infoborden",
|
|
"",
|
|
""
|
|
);
|
|
this.icon = "./assets/nature/birdhide.svg"
|
|
}
|
|
} |