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