20 lines
555 B
TypeScript
20 lines
555 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",
|
||
|
"De natuur in",
|
||
|
[new Birdhide(), new InformationBoard(), new NatureReserves(true)],
|
||
|
12,
|
||
|
51.20875,
|
||
|
3.22435,
|
||
|
"<h3>Natuurpuntstuff</h3>",
|
||
|
"",
|
||
|
""
|
||
|
);
|
||
|
}
|
||
|
}
|