/* exported TrainlineOverlay */ /* globals AbstractGeoJsonOverlay: true */ var TrainlineOverlay = AbstractGeoJsonOverlay.extend({ initialize: function(wsChannel, layerMgr) { AbstractGeoJsonOverlay.prototype.initialize.call(this, wsChannel, layerMgr, "train"); }, createGeoJson: function(objects){ var geoJsonLayer = L.geoJSON([], { onEachFeature: function(feature, layer){ console.log("onEachFeature", feature)//XXX if (feature.properties && feature.properties.popupContent) { layer.bindPopup(feature.properties.popupContent); } }, pointToLayer: function (feature, latlng) { console.log("pointToLayer", feature)//XXX var geojsonMarkerOptions = { radius: 8, weight: 1, opacity: 1, fillOpacity: 0.8 }; return L.circleMarker(latlng, geojsonMarkerOptions); }, style: function(feature) { if (feature.properties && feature.properties.color){ return { color: feature.properties.color }; } } }); var lines = {}; // { "A1":[] } var lineColors = {} // { "A1": "red" } //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; //default or new color lineColors[obj.attributes.line] = obj.attributes.color || "#ff7800"; } if (obj.attributes.color){ //new color lineColors[obj.attributes.line] = obj.attributes.color; } 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, "color": lineColors[linename], "popupContent": "Train-station (Line " + entry.attributes.line + ")
" + entry.attributes.station }, "geometry": { "type": "Point", "coordinates": [entry.x, entry.z] } }); } }); var feature = { "type":"Feature", "geometry": { "type":"LineString", "coordinates":coords }, "properties":{ "name": linename, "color": lineColors[linename], "popupContent": "Train-line (" + linename + ")" } }; //line-points geoJsonLayer.addData(feature); //stations stations.forEach(function(stationfeature){ geoJsonLayer.addData(stationfeature); }); }); return geoJsonLayer; } });