mapserver/server/static/js/overlays/TrainlineOverlay.js

103 lines
2.4 KiB
JavaScript
Raw Normal View History

2019-04-02 16:00:42 +03:00
'use strict';
var TrainlineOverlay = AbstractGeoJsonOverlay.extend({
initialize: function(wsChannel, layerMgr) {
AbstractGeoJsonOverlay.prototype.initialize.call(this, wsChannel, layerMgr, "train");
},
createGeoJson: function(objects){
var self = this;
var geoJsonLayer = L.geoJSON([], {
onEachFeature: function(feature, layer){
if (feature.properties && feature.properties.popupContent) {
layer.bindPopup(feature.properties.popupContent);
}
},
pointToLayer: function (feature, latlng) {
2019-04-03 22:31:36 +03:00
var geojsonMarkerOptions = {
radius: 8,
fillColor: "#ff7800",
color: "#000",
weight: 1,
opacity: 1,
fillOpacity: 0.8
};
2019-04-02 16:00:42 +03:00
return L.circleMarker(latlng, geojsonMarkerOptions);
}
});
var lines = {}; // { "A1":[] }
//Sort and add lines
objects.forEach(function(obj){
if (!obj.attributes.line)
return
var line = lines[obj.attributes.line];
if (!line){
line = [];
lines[obj.attributes.line] = line;
}
line.push(obj);
});
//Order by index and display
Object.keys(lines).forEach(function(linename){
lines[linename].sort(function(a,b){
return parseInt(a.attributes.index) - parseInt(b.attributes.index);
});
var coords = [];
var stations = [];
//Add stations
lines[linename].forEach(function(entry){
coords.push([entry.x, entry.z]);
if (entry.attributes.station) {
stations.push({
"type": "Feature",
"properties": {
"name": entry.attributes.station,
"popupContent": "<b>Train-station (Line " + entry.attributes.line + ")</b><hr>" +
entry.attributes.station
},
"geometry": {
"type": "Point",
"coordinates": [entry.x, entry.z]
}
});
}
});
var feature = {
"type":"Feature",
"geometry": {
"type":"LineString",
"coordinates":coords
},
"properties":{
"name": linename,
"popupContent": "<b>Train-line (" + linename + ")</b>"
}
}
//line-points
geoJsonLayer.addData(feature);
//stations
stations.forEach(function(stationfeature){
geoJsonLayer.addData(stationfeature);
});
});
return geoJsonLayer;
}
});