2020-07-07 16:00:27 +02:00
|
|
|
import {Layout} from "../Layout";
|
|
|
|
import {GrbToFix} from "../Layers/GrbToFix";
|
|
|
|
import { BikePumps } from "../Layers/BikePumps";
|
|
|
|
|
2020-07-07 16:39:11 +02:00
|
|
|
export class BikePumpsLayout extends Layout {
|
2020-07-07 16:00:27 +02:00
|
|
|
constructor() {
|
|
|
|
super(
|
|
|
|
"pomp",
|
2020-07-08 11:23:36 +02:00
|
|
|
"Cyclofix",
|
2020-07-07 16:00:27 +02:00
|
|
|
[new BikePumps()],
|
|
|
|
15,
|
|
|
|
51.2083,
|
|
|
|
3.2279,
|
|
|
|
|
|
|
|
|
2020-07-08 11:23:36 +02:00
|
|
|
"<h3>Open CycloFix</h3>\n" +
|
2020-07-07 16:00:27 +02:00
|
|
|
"\n" +
|
2020-07-08 11:23:36 +02:00
|
|
|
"Something something bikes"
|
2020-07-07 16:00:27 +02:00
|
|
|
|
|
|
|
,
|
|
|
|
"", "");
|
|
|
|
}
|
|
|
|
}
|