22 lines
No EOL
651 B
TypeScript
22 lines
No EOL
651 B
TypeScript
import {Layout} from "../Layout";
|
|
import {Birdhide} from "../Layers/Birdhide";
|
|
import {InformationBoard} from "../Layers/InformationBoard";
|
|
import {NatureReserves} from "../Layers/NatureReserves";
|
|
import {DrinkingWater} from "../Layers/DrinkingWater";
|
|
|
|
export class Natuurpunt extends Layout{
|
|
constructor() {
|
|
super(
|
|
"natuurpunt",
|
|
["nl"],
|
|
"De natuur in",
|
|
[new Birdhide(), new InformationBoard(), new NatureReserves(true), new DrinkingWater()],
|
|
12,
|
|
51.20875,
|
|
3.22435,
|
|
"<h3>Natuurpuntstuff</h3>",
|
|
"",
|
|
""
|
|
);
|
|
}
|
|
} |