Add a nature reserve oriented quest layout

This commit is contained in:
Pieter Vander Vennet 2020-07-18 20:40:51 +02:00
parent a7d356c263
commit fe4fa9dd0e
24 changed files with 591 additions and 1307 deletions

View file

@ -0,0 +1,20 @@
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>",
"",
""
);
}
}