mapcomplete/Customizations/Layouts/Cyclofix.ts

28 lines
1.3 KiB
TypeScript
Raw Normal View History

2020-07-07 14:00:27 +00:00
import {Layout} from "../Layout";
import {GrbToFix} from "../Layers/GrbToFix";
import { BikeParkings } from "../Layers/BikeParkings";
import BikeServices from "../Layers/BikeServices";
2020-07-07 14:00:27 +00:00
2020-07-08 15:12:23 +00:00
export default class Cyclofix extends Layout {
2020-07-07 14:00:27 +00:00
constructor() {
super(
"pomp",
"Cyclofix bicycle infrastructure",
[new BikeParkings(), new BikeServices()],
16,
50.8465573,
4.3516970,
2020-07-07 14:00:27 +00:00
2020-07-08 14:08:24 +00:00
"<h3>Cyclofix bicycle infrastructure</h3>\n" +
2020-07-07 14:00:27 +00:00
"\n" +
2020-07-08 14:08:24 +00:00
"<p><b>EN&gt;</b> On this map we want to collect data about the whereabouts of bicycle pumps and public racks in Brussels." +
"As a result, cyclists will be able to quickly find the nearest infrastructure for their needs.</p>" +
"<p><b>NL&gt;</b> Op deze kaart willen we gegevens verzamelen over de locatie van fietspompen en openbare stelplaatsen in Brussel." +
"Hierdoor kunnen fietsers snel de dichtstbijzijnde infrastructuur vinden die voldoet aan hun behoeften.</p>" +
"<p><b>FR&gt;</b> Sur cette carte, nous voulons collecter des données sur la localisation des pompes à vélo et des supports publics à Bruxelles." +
"Les cyclistes pourront ainsi trouver rapidement l'infrastructure la plus proche de leurs besoins.</p>"
2020-07-07 14:00:27 +00:00
,
"", "");
}
}