import {Layout} from "../Layout"; import BikeParkings from "../Layers/BikeParkings"; import BikeServices from "../Layers/BikeStations"; import {GhostBike} from "../Layers/GhostBike"; import Translations from "../../UI/i18n/Translations"; export default class Cyclofix extends Layout { constructor() { super( "pomp", Translations.t.cylofix.title, [new GhostBike(), new BikeServices(), new BikeParkings()], 16, 50.8465573, 4.3516970, "
${Translations.t.cylofix.description.Render()}
` , "", ""); } }