Add GRB theme

This commit is contained in:
Pieter Vander Vennet 2021-03-21 15:12:53 +01:00
parent 9258860ed0
commit d24b421e46
2 changed files with 167 additions and 1 deletions

View file

@ -25,6 +25,7 @@ import * as campersites from "../assets/themes/campersites/campersites.json"
import * as play_forests from "../assets/themes/play_forests/play_forests.json"
import * as speelplekken from "../assets/themes/speelplekken/speelplekken.json"
import * as sport_pitches from "../assets/themes/sport_pitches/sport_pitches.json"
import * as grb from "../assets/themes/grb.json"
import LayerConfig from "./JSON/LayerConfig";
import LayoutConfig from "./JSON/LayoutConfig";
import AllKnownLayers from "./AllKnownLayers";
@ -59,7 +60,8 @@ export class AllKnownLayouts {
new LayoutConfig(campersites),
new LayoutConfig(play_forests),
new LayoutConfig(speelplekken),
new LayoutConfig(sport_pitches)
new LayoutConfig(sport_pitches),
new LayoutConfig(grb)
];
public static allSets: Map<string, LayoutConfig> = AllKnownLayouts.AllLayouts();