Echarts地图

echats地图使用

<template>
    <div id='mapId' :style="{width:'100%',height:'100%'}"></div>
</template>

设置option:

this.charts = this.$echarts.init(document.getElementById('mapId'),'macarons')
// 初始化

// 参数配置
this.charts.setOption({
                    title : {
                        text: '用户地域分布',
                        show: false,
                        textStyle:{
                            fontSize: 18,
                            fontWeight: 600,
                            color:'#333'
                        }
                    },
                    tooltip : {
                        trigger: 'item',
                        formatter: (params)=> {
                            return this.time + '<br />' +
                            params.data.name + '客户数: ' + params.data.value + '<br />' + 
                            '占比: ' + params.data.rate
                        }
                    },
                    dataRange: {
                        min: 0,
                        max: 300,
                        x: '50',
                        y: '260',
                        text:['高','低'],          
                        calculable : true,
                        inRange: {
                            color: ['#e0ffff', '#58aaeb'],
                            symbolSize: [100, 100]
                        }
                    },
                    geo: {
                        map: "china",
                        scaleLimit: {
                            min: 1,
                            max: 2
                        },
                        zoom: 1,
                        label: {
                            normal: {
                                show:true,
                                fontSize: "14",
                                color: "rgba(0,0,0,0.7)"
                            }
                        }
                    },
                    series: [
                    {
                        name: "用户地域分布",
                        type: "map",
                        geoIndex: 0,
                        data: this.mapData
                    }
                    ],
                }) 

                // 省份点击事件
                this.charts.on('click', (params)=> {
                    this.$emit('mapClick', params.name)
                })

地图点击事件触发请求多次(坑)

原因: 点击事件需要清除 否则会累加
在这里插入图片描述

解决代码:

 	this.charts.off('click')   // 点击事件前先清除事件
    this.charts.on('click', (params)=> {
         this.$emit('mapClick', params.name)
    })
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值