You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
724 B

function speedSeries(response) {
var data = response.linestring;
var series = {
name: "Speed",
yAxis: 1,
tooltip: {
animation: true,
pointFormatter: function(){
moveMarkerToPosition(this);
return '<b>'+this.y+'mph</b>';
}
},
lineWidth: 1,
color: '#a8a8a8',
marker: {
enabled: true,
radius: 1,
symbol: 'circle',
fillColor: '#a8a8a8'
},
turboThreshold: 0,
data: []
};
series.data = data.properties.map(function(d,i){
return {
x: new Date(d.unixtime*1000),
y: ('speed' in d && d.speed >= 0 ? Math.round(d.speed * 2.23694) : null),
location: data.coordinates[i]
}
});
return [series];
}