Blame view

src/components/echart/map/chart.vue 7.99 KB
任超 committed
1
<template>
任超 committed
2
  <!-- 地图 -->
任超 committed
3
  <Echart id="centreLeft2Chart" class="centreLeft2Chart" ref="centreLeft2ChartRef" width="100%" height="505px"
任超 committed
4
    :options="options"></Echart>
任超 committed
5 6 7 8 9
</template>

<script>
import Echart from '@/common/echart';
export default {
任超 committed
10
  data () {
任超 committed
11 12
    return {
      options: {},
任超 committed
13 14
      max: "9000", //最大value值
      min: "500", // 最小value值
任超 committed
15 16 17 18 19 20 21 22 23 24 25 26 27
    };
  },
  components: {
    Echart,
  },
  props: {
    cdata: {
      type: Array,
      default: () => [],
    },
  },
  watch: {
    cdata: {
任超 committed
28 29
      handler (newData) {
        let _this = this;
任超 committed
30 31
        // 设置点的位置(经纬度)
        const geoCoordMap = {
任超 committed
32 33 34 35 36 37 38 39 40 41 42
          汉台区: [107.03187, 33.06774, 20],
          南郑区: [106.94024, 33.00299, 20],
          城固县: [107.33367, 33.15661, 20],
          洋县: [107.545837, 33.222739, 20],
          西乡县: [107.76867, 32.98411, 20],
          镇巴县: [107.89648, 32.53487, 20],
          勉县: [106.673221, 33.153553, 20],
          留坝县: [106.92233, 33.61606, 20],
          佛坪县: [107.98974, 33.52496, 20],
          宁强县: [106.25958, 32.82881, 20],
          略阳县: [106.15399, 33.33009, 20],
任超 committed
43 44 45
        };
        let seriesData = [
          {
任超 committed
46
            name: '汉台区',
任超 committed
47 48
          },
          {
任超 committed
49
            name: '南郑区',
任超 committed
50 51
          },
          {
任超 committed
52
            name: '城固县',
任超 committed
53 54
          },
          {
任超 committed
55
            name: '洋县',
任超 committed
56 57
          },
          {
任超 committed
58
            name: '西乡县',
任超 committed
59 60
          },
          {
任超 committed
61
            name: '镇巴县',
任超 committed
62 63
          },
          {
任超 committed
64
            name: '勉县',
任超 committed
65 66
          },
          {
任超 committed
67
            name: '留坝县',
任超 committed
68 69
          },
          {
任超 committed
70
            name: '佛坪县',
任超 committed
71
          },
任超 committed
72 73 74 75 76 77
          {
            name: '宁强县',
          },
          {
            name: '略阳县'
          }
任超 committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
        ];
        let convertData = function (data) {
          let scatterData = [];
          for (var i = 0; i < data.length; i++) {
            var geoCoord = geoCoordMap[data[i].name];
            if (geoCoord) {
              scatterData.push({
                name: data[i].name,
                value: geoCoord.concat(data[i].value),
              });
            }
          }
          return scatterData;
        };
        this.options = {
          showLegendSymbol: true,
          tooltip: {
            trigger: 'item',
            textStyle: {
              fontSize: 14,
              lineHeight: 22,
            },
            position: point => {
              // 固定在顶部
              return [point[0] + 50, point[1] - 20];
            },
            // 如果需要自定义 tooltip样式,需要使用formatter
任超 committed
105 106 107
            formatter: params => {
              return `<div style="">${params.name}:${params.value}</div>`
            }
任超 committed
108 109 110
          },
          visualMap: {
            min: 0,
任超 committed
111
            max: _this.max,
任超 committed
112 113
            bottom: '20%',
            left: 50,
任超 committed
114 115 116 117 118 119 120 121 122 123 124 125 126
            splitNumber: 6,
            seriesIndex: [0],
            itemWidth: 20, // 每个图元的宽度
            itemGap: 2,    // 每两个图元之间的间隔距离,单位为px
            pieces: [      // 自定义每一段的范围,以及每一段的文字
              { gte: 6000, label: '6000以上', color: '#035cf5' }, // 不指定 max,表示 max 为无限大(Infinity)。
              { gte: 2000, lte: 6000, label: '2000-6000', color: '#3375e4' },
              { gte: 1000, lte: 2000, label: '1000-2000', color: '#6797ef' },
              { gte: 500, lte: 1000, label: '500-1000', color: '#96b5ef' },
            ],
            textStyle: {
              color: '#737373'
            }
任超 committed
127 128 129 130
          },
          series: [
            {
              type: 'map',
任超 committed
131 132 133
              aspectScale: 1, //长宽比
              zoom: 1.1,
              mapType: '汉中市', // 自定义扩展图表类型
任超 committed
134
              top: '15%',
任超 committed
135
              left: '10%',
任超 committed
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
              itemStyle: {
                normal: {
                  areaColor: 'rgba(19,54,162, .5)',
                  borderColor: 'rgba(0,242,252,.3)',
                  borderWidth: 1,
                  shadowBlur: 7,
                  shadowColor: '#00f2fc',
                },
                emphasis: {
                  areaColor: '#4f7fff',
                  borderColor: 'rgba(0,242,252,.6)',
                  borderWidth: 2,
                  shadowBlur: 10,
                  shadowColor: '#00f2fc',
                },
              },
              label: {
                formatter: params => `${params.name}`,
                show: true,
                position: 'insideRight',
                textStyle: {
                  fontSize: 14,
                  color: '#efefef',
                },
                emphasis: {
                  textStyle: {
                    color: '#fff',
任超 committed
163 164
                  }
                }
任超 committed
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
              },
              data: newData,
            },
            {
              type: 'effectScatter',
              coordinateSystem: 'geo',
              symbolSize: 7,
              effectType: 'ripple',
              legendHoverLink: false,
              showEffectOn: 'render',
              rippleEffect: {
                period: 4,
                scale: 2.5,
                brushType: 'stroke',
              },
              zlevel: 1,
              itemStyle: {
                normal: {
                  color: '#99FBFE',
                  shadowBlur: 5,
                  shadowColor: '#fff',
                },
              },
              data: convertData(seriesData),
            },
          ],
        };
        // 重新选择区域
        this.handleMapRandomSelect();
      },
      immediate: true,
      deep: true,
    },
  },
  methods: {
    // 开启定时器
任超 committed
201
    startInterval () {
任超 committed
202 203 204 205 206 207 208 209 210 211 212
      const _self = this;
      // 应通过接口获取配置时间,暂时写死5s
      const time = 2000;
      if (this.intervalId !== null) {
        clearInterval(this.intervalId);
      }
      this.intervalId = setInterval(() => {
        _self.reSelectMapRandomArea();
      }, time);
    },
    // 重新随机选中地图区域
任超 committed
213
    reSelectMapRandomArea () {
任超 committed
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
      const length = 9;
      this.$nextTick(() => {
        try {
          const map = this.$refs.centreLeft2ChartRef.chart;
          let index = Math.floor(Math.random() * length);
          while (index === this.preSelectMapIndex || index >= length) {
            index = Math.floor(Math.random() * length);
          }
          map.dispatchAction({
            type: 'mapUnSelect',
            seriesIndex: 0,
            dataIndex: this.preSelectMapIndex,
          });
          map.dispatchAction({
            type: 'showTip',
            seriesIndex: 0,
            dataIndex: index,
          });
          map.dispatchAction({
            type: 'mapSelect',
            seriesIndex: 0,
            dataIndex: index,
          });
          this.preSelectMapIndex = index;
        } catch (error) {
          console.log(error)
        }
      });
    },
任超 committed
243
    handleMapRandomSelect () {
任超 committed
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
      this.$nextTick(() => {
        try {
          const map = this.$refs.centreLeft2ChartRef.chart;
          const _self = this;
          setTimeout(() => {
            _self.reSelectMapRandomArea();
          }, 0);
          // 移入区域,清除定时器、取消之前选中并选中当前
          map.on('mouseover', function (params) {
            clearInterval(_self.intervalId);
            map.dispatchAction({
              type: 'mapUnSelect',
              seriesIndex: 0,
              dataIndex: _self.preSelectMapIndex,
            });
            map.dispatchAction({
              type: 'mapSelect',
              seriesIndex: 0,
              dataIndex: params.dataIndex,
            });
            _self.preSelectMapIndex = params.dataIndex;
          });
          // 移出区域重新随机选中地图区域,并开启定时器
          map.on('globalout', function () {
            _self.reSelectMapRandomArea();
            _self.startInterval();
          });
          this.startInterval();
        } catch (error) {
          console.log(error)
        }
      });
    },
  },
};
</script>
任超 committed
280 281 282
<style>

</style>