mapcomplete/Customizations/Layouts/BikePumps.ts

23 lines
487 B
TypeScript
Raw Normal View History

2020-07-07 14:00:27 +00:00
import {Layout} from "../Layout";
import {GrbToFix} from "../Layers/GrbToFix";
import { BikePumps } from "../Layers/BikePumps";
2020-07-07 14:39:11 +00:00
export class BikePumpsLayout extends Layout {
2020-07-07 14:00:27 +00:00
constructor() {
super(
"pomp",
"Grb import fix tool",
[new BikePumps()],
15,
51.2083,
3.2279,
"<h3>GRB Fix tool</h3>\n" +
"\n" +
"Expert use only"
,
"", "");
}
}