Toggle navigation
全货机航班动态 - 进出港联动
By
M***菔
2020-07-21 01:44:07
脚本
16
21
作品使用的第三方脚本
数据管理
上传数据
支持小于 5M 任意格式(csv, xlsx, json, xml, ...)的数据文件
上传后可以通过生成的文件链接异步获取托管的数据。
历史数据
0 条
无历史数据
代码修改记录
信息提示
保存作品
对当前截图不满意?你还可以
上传本地截图
重新截图
作品名称
作品描述
标签
geo
grid
legend
markLine
markPoint
bar
effectScatter
line
lines
map
timeline
title
toolbox
tooltip
visualMap
作品默认版本
最新
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
20:11:45
图表已生成
整理代码
刷新
代码
var uploadedDataURL = "/asset/get/s/data-1528971808162-BkOXf61WX.json"; var planePath = 'path://M1705.06,1318.313v-89.254l-319.9-221.799l0.073-208.063c0.521-84.662-26.629-121.796-63.961-121.491c-37.332-0.305-64.482,36.829-63.961,121.491l0.073,208.063l-319.9,221.799v89.254l330.343-157.288l12.238,241.308l-134.449,92.931l0.531,42.034l175.125-42.917l175.125,42.917l0.531-42.034l-134.449-92.931l12.238-241.308L1705.06,1318.313z'; var geoCoordMap = { "郑州": [113.858976, 34.532204], "杭州": [120.44332, 30.240977], "无锡": [120.439564, 31.508458], "泉州": [118.598632, 24.807175], "南京": [118.88331, 31.736424], "南昌": [115.919301, 28.865286], "深圳": [113.821705, 22.638172], "新疆": [87.9236, 43.5883], "淮安": [119.137859, 33.795129] }; var geoCoordEMap = { "郑州": [113.858976, 34.532204], "杭州": [120.44332, 30.240977], "无锡": [120.439564, 31.508458], "泉州": [118.598632, 24.807175], "南京": [118.88331, 31.736424], "南昌": [115.919301, 28.865286], "深圳": [113.821705, 22.638172], "淮安": [119.137859, 33.795129] }; var geoCoordArray = [ { key: 1, start: '杭州', end: '郑州', route: '杭州-郑州-杭州', num: 'O36922/O36989', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 2, start: '郑州', end: '杭州', route: '杭州-郑州-杭州', num: 'O36990', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 3, start: '泉州', end: '无锡', num: 'I99862', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 4, start: '无锡', end: '郑州', num: 'I99862', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 5, start: '南京', end: '郑州', num: 'CF9092', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 6, start: '新疆', end: '郑州', num: 'CF9092', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 7, start: '南昌', end: '郑州', num: 'HT3810', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 8, start: '深圳', end: '郑州', route: '深圳-郑州', num: 'O36879', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' }, { key: 9, start: '淮安', end: '郑州', num: 'I99872', type: 'B733', fly: '[19]05:30', to: '[19]06:01', remark: '公司计划延误' } ]; var geoCoordEArray = [{ "郑州": [113.858976, 34.532204], "杭州": [120.44332, 30.240977] }, { "杭州": [120.44332, 30.240977], "郑州": [113.858976, 34.532204], "杭州 ": [120.44332, 30.240977] }, { "郑州": [113.858976, 34.532204], "无锡": [120.439564, 31.508458], "泉州": [118.598632, 24.807175] }, { "郑州": [113.858976, 34.532204], "南京": [118.88331, 31.736424] }, { "郑州": [113.858976, 34.532204], "南昌": [115.919301, 28.865286] }, { "郑州": [113.858976, 34.532204], "深圳": [113.821705, 22.638172] }, { "郑州": [113.858976, 34.532204], "淮安": [119.137859, 33.795129] }]; var colors = ["#1DE9B6","#04B9FF"]; $(function() { // 基于准备好的dom,初始化echarts实例 // var myChart = echarts.init(document.getElementById('echartsId')); var ieport = ["进港", "出港"]; var mapIData = []; // 地图数据坐标 航线 组装 for (var dataItem of geoCoordArray) { mapIData.push({ name: dataItem.start, //城市名称 value: geoCoordMap[dataItem.start], //城市坐标 num: dataItem.num, //航班号 key: dataItem.key, //航班号 route: dataItem.route, type: dataItem.type, fly: dataItem.fly, to: dataItem.to, remark: dataItem.remark, coords: [geoCoordMap[dataItem.start], geoCoordMap[dataItem.end]] //航线路径点 }); } //加载地图 $.getJSON(uploadedDataURL, function(geoJson) { $('body').css({ 'background': 'url(/asset/get/s/data-1596589418370-i0oW0darx.jpg) repeat-y', //'#2a6d87', 'position': 'fixed', 'top': 0, 'left': 0, 'width': '100%', 'height': '100%', 'background-size': 'cover', '-webkit-background-size': 'cover', '-o-background-size': 'cover', 'background-position': 'center 0', //'writing-mode': 'vertical-rl' }); //注册地图组件 echarts.registerMap('china', geoJson); // 时间线滚动 optionCargoMap = { timeline: { data: ieport, axisType: 'category', autoPlay: true, playInterval: 24000, // 时间线切换速度 进港、出港切换速度 毫秒 left: '30%', right: '30%', bottom: '3%', width: '40%', // height: null, label: { normal: { textStyle: { color: '#ddd' } }, emphasis: { textStyle: { color: '#fff' } } }, symbolSize: 10, lineStyle: { color: '#555' }, checkpointStyle: { borderColor: '#777', borderWidth: 2 }, controlStyle: { showNextBtn: true, showPrevBtn: true, normal: { color: '#666', borderColor: '#666' }, emphasis: { color: '#aaa', borderColor: '#aaa' } }, }, // 主体参数配置 baseOption: { animation: true, animationDuration: 1000, animationEasing: 'cubicInOut', animationDurationUpdate: 1000, animationEasingUpdate: 'cubicInOut', visualMap: { min: 0, max: 20, left: 'left', top: 'bottom', text: ['高', '低'], textStyle:{ color:'white' }, calculable: true, colorLightness: [0.8, 100], color: ['#c05050','#e5cf0d','#5ab1ef'], dimension: 3 }, geo: { //地理坐标系组件。 show: true, map: 'china', roam: true, silent: true, zoom: 1, left: '20%', center: [113.83531246, 34.0267395887], label: { emphasis: { show: true } }, itemStyle: { normal: { borderColor: 'rgba(147, 235, 248, 1)', borderWidth: 1, areaColor: { type: 'radial', x: 0.5, y: 0.5, r: 0.8, colorStops: [{ offset: 0, color: 'rgba(147, 235, 248, 0)' // 0% 处的颜色 }, { offset: 1, color: 'rgba(147, 235, 248, .2)' // 100% 处的颜色 }], globalCoord: false // 缺省为 false }, shadowColor: 'rgba(128, 217, 248, 1)', // shadowColor: 'rgba(255, 255, 255, 1)', shadowOffsetX: -2, shadowOffsetY: 2, shadowBlur: 10 }, emphasis: { areaColor: '#389BB7', borderWidth: 0 } } }, tooltip : { show: true, trigger: 'item', triggerOn: 'mousemove|click', enterable: true, formatter:function(params, ticket, callback){ if(params.seriesType=="lines"){ return '航线:'+params.data.route+'
航班:'+params.data.num+'
机型:'+params.data.type; }else{ return params.name; } } } }, options: [] }; // 进出港 时间线 滚动展示 for (var n = 0; n < ieport.length; n++) { optionCargoMap.options.push({ title: [{ text: '全货机航班动态', //subtext: ' ', left: '35%', top: '1%', textStyle: { color: '#fff', fontSize: 32 } }], series: [ //地图? // { // type: 'map', // map: 'china', // geoIndex: 0, // aspectScale: 1, //长宽比 // showLegendSymbol: false, // 存在legend时显示 // label: { // normal: { // show: false // }, // emphasis: { // show: false, // textStyle: { // color: '#fff' // } // } // }, // roam: true, // itemStyle: { // normal: { // areaColor: '#031525', // borderColor: '#FFFFFF', // }, // emphasis: { // areaColor: '#2B91B7' // } // } // }, //地图点的动画效果 { // name: 'Top 5', type: 'effectScatter', coordinateSystem: 'geo', effectType: 'ripple', data: mapIData, symbolSize: 6, showEffectOn: 'render', rippleEffect: { brushType: 'stroke' }, hoverAnimation: true, label: { normal: { formatter: '{b}', position: 'right', show: true } }, itemStyle: { normal: { color: colors[n], shadowBlur: 10, shadowColor: colors[n] } }, zlevel: 1 }, //地图线的动画效果 { name: 'zzcargo_lines', type: 'lines', zlevel: 2, // polyline:true, effect: { show: true, period: 12, //箭头指向速度,值越小速度越快 trailLength: 0, //特效尾迹长度[0,1]值越大,尾迹越长重 symbol: planePath, //箭头图标 symbolSize: 12, //图标大小 }, lineStyle: { normal: { color: colors[n], width: 2, //线宽。 type: 'solid', //线的类型。可选:'solid','dashed','dotted' opacity: 0.2, //尾迹线条透明度 curveness: 0.2 //尾迹线条曲直度 } }, label: { show: true, position: 'middle', verticalAlign: 'middle', formatter: function(params) { return params.data.num } }, data: mapIData } ] }); } myChart.setOption(optionCargoMap); // 航线 点击 效果 // myChart.on('click', 'series.lines', function () { // //alert(11111); // // series name 为 'uuu' 的系列中的图形元素被 'mouseover' 时,此方法被回调。 // }); myChart.resize(); }); });