import {Layout} from "../Layout"; import BikeParkings from "../Layers/BikeParkings"; import BikeServices from "../Layers/BikeStations"; import BikeShops from "../Layers/BikeShops"; import Translations from "../../UI/i18n/Translations"; import {DrinkingWater} from "../Layers/DrinkingWater"; import Combine from "../../UI/Base/Combine"; import BikeOtherShops from "../Layers/BikeOtherShops"; import BikeCafes from "../Layers/BikeCafes"; export default class Cyclofix extends Layout { constructor() { super( "cyclofix", ["en", "nl", "fr","gl"], Translations.t.cyclofix.title, [new BikeServices(), new BikeShops(), new DrinkingWater(), new BikeParkings(), new BikeOtherShops(), new BikeCafes()], 16, 50.8465573, 4.3516970, new Combine([ "

", Translations.t.cyclofix.title, "


", Translations.t.cyclofix.description, "

" ]) ); this.icon = "./assets/bike/logo.svg" this.description = "Easily search and contribute bicycle data nearby"; this.socialImage = "./assets/bike/cyclofix.jpeg" } }