2020-01-13 11:39:28 +00:00
|
|
|
|
const L = require('leaflet');
|
2020-01-13 12:00:34 +00:00
|
|
|
|
const color = require('color');
|
|
|
|
|
|
2020-01-13 11:39:28 +00:00
|
|
|
|
require('leaflet/dist/leaflet.css');
|
|
|
|
|
|
2020-01-13 11:20:35 +00:00
|
|
|
|
// MAP
|
2020-01-13 11:39:28 +00:00
|
|
|
|
const map = L.map('map').setView([43.610, 3.8612], 14);
|
2020-01-13 11:20:35 +00:00
|
|
|
|
|
|
|
|
|
L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token={accessToken}', {
|
|
|
|
|
attribution: [
|
|
|
|
|
// TODO: Attribution des données TaM
|
|
|
|
|
`Données cartographiques © Contributeurs d’<a href="https://www.open\
|
|
|
|
|
streetmap.org/">OpenStreetMap</a>, <a href="https://creativecommons.org/\
|
|
|
|
|
licenses/by-sa/2.0/">CC-BY-SA</a>`,
|
|
|
|
|
'Imagerie © <a href="https://www.mapbox.com/">Mapbox</a>',
|
|
|
|
|
].join(' | '),
|
2020-01-13 12:00:34 +00:00
|
|
|
|
|
|
|
|
|
id: 'mapbox/streets-v11',
|
2020-01-13 11:20:35 +00:00
|
|
|
|
tileSize: 512,
|
2020-01-13 12:00:34 +00:00
|
|
|
|
|
|
|
|
|
accessToken: 'pk.eyJ1IjoibWF0dGVvZGVsYWJyZSIsImEiOiJjazUxaWNsdXcwdWhjM29tc2xndXJoNGtxIn0.xELwMerqJLFimIqU6RxnZw',
|
|
|
|
|
|
|
|
|
|
maxZoom: 18,
|
|
|
|
|
zoomSnap: 0,
|
2020-01-13 11:20:35 +00:00
|
|
|
|
zoomOffset: -1,
|
|
|
|
|
}).addTo(map);
|
|
|
|
|
|
|
|
|
|
// </MAP>
|
|
|
|
|
//
|
|
|
|
|
// TAM
|
|
|
|
|
|
2020-01-13 12:00:09 +00:00
|
|
|
|
const makeBorderColor = mainColor =>
|
|
|
|
|
{
|
|
|
|
|
const hsl = color(mainColor).hsl();
|
|
|
|
|
|
|
|
|
|
if (hsl.color[2] < 40)
|
|
|
|
|
{
|
|
|
|
|
hsl.color[2] += 30;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
hsl.color[2] -= 20;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hsl.hex();
|
|
|
|
|
};
|
2020-01-13 11:20:35 +00:00
|
|
|
|
|
2020-01-13 12:00:09 +00:00
|
|
|
|
const SERVER = window.origin;
|
2020-01-13 11:20:35 +00:00
|
|
|
|
|
2020-01-13 12:00:09 +00:00
|
|
|
|
fetch(SERVER + '/line/1').then(res => res.json()).then(line =>
|
2020-01-13 11:20:35 +00:00
|
|
|
|
{
|
|
|
|
|
const color = line.color;
|
2020-01-13 12:00:09 +00:00
|
|
|
|
const borderColor = makeBorderColor(color);
|
2020-01-13 11:20:35 +00:00
|
|
|
|
|
|
|
|
|
line.routes.forEach(route =>
|
|
|
|
|
{
|
|
|
|
|
route.ways.forEach(way =>
|
|
|
|
|
{
|
|
|
|
|
const wayPoints = way.map(({lat, lon}) => [lat, lon]);
|
|
|
|
|
|
2020-01-13 12:00:09 +00:00
|
|
|
|
L.polyline(wayPoints, {weight: 8, color: borderColor}).addTo(map);
|
2020-01-13 11:20:35 +00:00
|
|
|
|
L.polyline(wayPoints, {weight: 6, color}).addTo(map);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
line.routes.forEach(route =>
|
|
|
|
|
{
|
|
|
|
|
route.stops.forEach(stop =>
|
|
|
|
|
{
|
|
|
|
|
const stopMarker = L.circleMarker(
|
|
|
|
|
[stop.lat, stop.lon],
|
|
|
|
|
{
|
|
|
|
|
fillColor: color,
|
|
|
|
|
radius: 6,
|
|
|
|
|
fillOpacity: 1,
|
2020-01-13 12:00:09 +00:00
|
|
|
|
color: borderColor,
|
2020-01-13 11:20:35 +00:00
|
|
|
|
weight: 2
|
|
|
|
|
}
|
|
|
|
|
).addTo(map);
|
|
|
|
|
|
|
|
|
|
stopMarker.bindPopup(stop.name);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|