mapcomplete/Customizations/Layouts/GRB.ts

22 lines
431 B
TypeScript
Raw Normal View History

2020-07-05 16:59:47 +00:00
import {Layout} from "../Layout";
import {GrbToFix} from "../Layers/GrbToFix";
export class GRB extends Layout {
constructor() {
super("grb",
2020-07-20 22:07:04 +00:00
["en"],
2020-07-05 16:59:47 +00:00
"Grb import fix tool",
[new GrbToFix()],
15,
51.2083,
3.2279,
"<h3>GRB Fix tool</h3>\n" +
"\n" +
"Expert use only"
,
"", "");
}
}