使用echarts實現四象限做位置管理
阿新 • • 發佈:2018-12-14
好久沒更新,以下是用echarts做的一個實時位置更新,照例先上成品圖。
option其他的引數都正常設定,只有在serious中需要注意一下,上程式碼咯
<div class="location" id="location" style="width: 774px;height: 338px;"></div>
var pathSymbols = { location:'path://M569.6 838.4c89.6-128 256-396.8 256-524.8 0-166.4-134.4-307.2-307.2-307.2S211.2 147.2 211.2 313.6c0 121.6 166.4 390.4 256 524.8C492.8 870.4 544 870.4 569.6 838.4zM326.4 313.6c0-102.4 83.2-192 192-192 102.4 0 192 83.2 192 192s-83.2 192-192 192C416 499.2 326.4 416 326.4 313.6zM633.6 313.6c0-64-51.2-115.2-115.2-115.2S403.2 249.6 403.2 313.6c0 64 51.2 115.2 115.2 115.2S633.6 377.6 633.6 313.6zM672 723.2c-12.8 19.2-25.6 38.4-38.4 57.6 102.4 19.2 153.6 51.2 153.6 70.4 0 25.6-96 83.2-275.2 83.2s-275.2-57.6-275.2-83.2c0-19.2 51.2-57.6 153.6-70.4-12.8-19.2-25.6-38.4-38.4-57.6-102.4 19.2-179.2 64-179.2 128 0 96 166.4 140.8 332.8 140.8s332.8-51.2 332.8-140.8C851.2 787.2 774.4 742.4 672 723.2z' }; var myChart = echarts.init(document.getElementById('location')); myChart.showLoading(); //資料載入完之前先顯示一段簡單的loading動畫 myChart.setOption({ xAxis: { // scale: true, show:false, //xy軸都隱藏了 測試的時候可以自己開啟 interval: 20, }, yAxis: { interval: 10, show:false, }, /*tooltip: { //遮罩層 trigger: 'none', axisPointer: { type: 'cross' } },*/ series: [{ type: 'scatter', //這個非常重要 symbolSize: 20, symbol: pathSymbols.location, //顯示標記的圖形 我習慣用svg 圖片等其他的使用可看api data: [30.2, -38.6], color:'red' }, { type: 'scatter', symbolSize: 20, symbol: pathSymbols.location, data: [ [35.2, 31.6], [127.5, -19.0], [-59.5, 49.2], ], color:'blue' }] }); myChart.hideLoading(); //隱藏載入動畫
附 iconfont中 查詢svg程式碼的方法 : 選好要使用的圖示 -> 購物車 -> 點選下載素材 -> 選擇svg (http://www.iconfont.cn/)