Add new taginfo project files

This commit is contained in:
Pieter Vander Vennet 2021-10-11 23:52:17 +02:00
parent f3aea74df5
commit 253069b534
15 changed files with 575 additions and 244 deletions

View file

@ -13,6 +13,7 @@ export default class AllKnownLayers {
const sharedLayers = new Map<string, LayerConfig>();
for (const layer of known_layers.layers) {
try {
// @ts-ignore
const parsed = new LayerConfig(layer, "shared_layers")
sharedLayers.set(layer.id, parsed);
sharedLayers[layer.id] = parsed;

View file

@ -63,6 +63,7 @@ export class AllKnownLayouts {
private static AllLayouts(): Map<string, LayoutConfig> {
const dict: Map<string, LayoutConfig> = new Map();
for (const layoutConfigJson of known_themes.themes) {
// @ts-ignore
const layout = new LayoutConfig(layoutConfigJson, true)
if (layout.id === "cyclofix") {