echarts lines配置项内容和展示

配置项如下
      var uploadedDataURL = "/asset/get/s/data-1511515655949-SyxzUwrxG.json";



$.get(uploadedDataURL, function(data) {
    myChart.setOption(
    option = {
        bmap: {
            center: [117.680453, 24.51893],
            zoom: 12,
            roam: true,
            mapStyle: {
                
            },
        },
        series: [{
            type: 'lines',
            coordinateSystem: 'bmap',
            polyline: true,
            data: data,
            silent: true,
            lineStyle: {
                normal: {
                    opacity: 0.2,
                    width: 1
                }
            },
            progressiveThreshold: 500,
            progressive: 100
        }, {
            type: 'lines',
            coordinateSystem: 'bmap',
            polyline: true,
            data: data,
            lineStyle: {
                normal: {
                    width: 0.02
                }
            },
            effect: {
                constantSpeed: 40,
                show: true,
                trailLength: 0.02,
                symbolSize: 2
            },
            zlevel: 1
        }]
    });
});
    
截图如下