mapcomplete/Customizations/AllKnownLayouts.ts

28 lines
799 B
TypeScript
Raw Normal View History

2020-07-05 16:59:47 +00:00
import {Groen} from "./Layouts/Groen";
import {Toilets} from "./Layouts/Toilets";
import {GRB} from "./Layouts/GRB";
import {Statues} from "./Layouts/Statues";
import {Bookcases} from "./Layouts/Bookcases";
2020-07-07 14:00:27 +00:00
import { BikePumps } from "./Layers/BikePumps";
2020-07-07 14:39:11 +00:00
import { BikePumpsLayout } from "./Layouts/BikePumps";
2020-07-05 16:59:47 +00:00
export class AllKnownLayouts {
public static allSets: any = AllKnownLayouts.AllLayouts();
private static AllLayouts() {
const layouts = [
new Groen(),
new GRB(),
2020-07-07 14:39:11 +00:00
new BikePumpsLayout(),
2020-07-05 16:59:47 +00:00
/*new Toilets(),
new Statues(),
new Bookcases()*/
];
const allSets = {};
for (const layout of layouts) {
allSets[layout.name] = layout;
}
return allSets;
}
}