2024-01-14 12:01:33 +00:00
|
|
|
function emoji_icon(emoji) {
|
|
|
|
return L.divIcon({
|
|
|
|
className: 'custom-div-icon',
|
2024-01-14 12:17:22 +00:00
|
|
|
html: "<div style='font-size: 24px;'>" + emoji + "</div>",
|
2024-01-14 12:01:33 +00:00
|
|
|
iconSize: [30, 42],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var stationIcon = emoji_icon("🚉");
|
2024-01-14 12:17:22 +00:00
|
|
|
var airportIcon = emoji_icon("✈️");
|
2024-01-14 12:01:33 +00:00
|
|
|
|
|
|
|
function build_map(map_id, coordinates, routes) {
|
|
|
|
// Initialize the map
|
|
|
|
var map = L.map(map_id).fitBounds(coordinates.map(function(station) {
|
|
|
|
return [station.latitude, station.longitude];
|
|
|
|
}));
|
|
|
|
|
|
|
|
// Set up the tile layer
|
|
|
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
|
|
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
|
|
}).addTo(map);
|
|
|
|
|
|
|
|
// Add markers with appropriate icons to the map
|
|
|
|
coordinates.forEach(function(item) {
|
|
|
|
var icon = item.type === "station" ? stationIcon : airportIcon;
|
|
|
|
var marker = L.marker([item.latitude, item.longitude], { icon: icon }).addTo(map);
|
|
|
|
marker.bindPopup(item.name);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Draw routes
|
|
|
|
routes.forEach(function(route) {
|
2024-01-14 16:50:16 +00:00
|
|
|
var color = {"train": "blue", "flight": "red"}[route.type];
|
|
|
|
var style = { weight: 3, opacity: 0.5, color: color };
|
2024-01-14 12:01:33 +00:00
|
|
|
if (route.geojson) {
|
|
|
|
// If route is defined as GeoJSON
|
|
|
|
L.geoJSON(JSON.parse(route.geojson), {
|
2024-01-14 16:50:16 +00:00
|
|
|
style: function(feature) { return style; }
|
2024-01-14 12:01:33 +00:00
|
|
|
}).addTo(map);
|
|
|
|
} else if (route.type === "flight") {
|
2024-01-14 16:50:16 +00:00
|
|
|
var flightPath = new L.Geodesic([[route.from, route.to]], style).addTo(map);
|
2024-01-14 12:01:33 +00:00
|
|
|
} else {
|
|
|
|
// If route is defined by 'from' and 'to' coordinates
|
2024-01-14 16:50:16 +00:00
|
|
|
L.polyline([route.from, route.to], style).addTo(map);
|
2024-01-14 12:01:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|