Added bike assests + naming consistency

This commit is contained in:
Pieter Fiers 2020-07-16 15:29:50 +02:00
parent 19acba61d2
commit 38d6616b4a
30 changed files with 744 additions and 169 deletions

View file

@ -1,16 +1,16 @@
import {Layout} from "../Layout";
import {GrbToFix} from "../Layers/GrbToFix";
import { BikeParkings } from "../Layers/BikeParkings";
import BikeServices from "../Layers/BikeServices";
import {GhostBike} from "../Layers/GhostBike";
export default class Cyclofix extends Layout {
constructor() {
super(
"pomp",
"Cyclofix bicycle infrastructure",
// [new BikePumps()],
[new GhostBike(), new BikeParkings(), new BikeServices()],
[new BikeParkings(), new BikeServices()],
16,
50.8465573,
4.3516970,
@ -27,4 +27,4 @@ export default class Cyclofix extends Layout {
,
"", "");
}
}
}