xhrr
<div class="chinaMap" id="chinaMap"></div>
    <script src="./china.js"></script>

  http://datav.aliyun.com/tools/atlas/#&lat=31.840232667909365&lng=104.2822265625&zoom=4下载中国地图json文件

function chinaMap(){
        
            var data = [
                {name: \'江西\',selected: true,value:10},
                {name: \'浙江\',selected: true,value:10},
            ];
            
            var option = {
                tooltip: {
                    trigger: \'item\',
                    formatter: \'{b}{c}\',
                },
                series: [{
                    name: \'中国\',
                    type: \'map\',
                    mapType: \'china\',
                    selectedMode: false,//single 表示单选;multiple表示多选 默认flase不选
                    itemStyle: {
                        normal: {
                            borderWidth: 2,
                            borderColor: \'#fff\',
                            background: \'#f00\',
                            areaColor: \'#E6E6E6\',
                            color: \'#163592\',
                            label: {
                                show: false
                            }
                        },
                        emphasis: { // 也是选中样式
                            borderWidth: 2,
                            borderColor: \'#fff\',
                            areaColor: \'#238DEC\',
                            label: {
                                show: true,
                                textStyle: {
                                    color: \'#fff\'
                                }
                            }
                        }
                    },
                    //此为加载的数据
                    data: data
                }]
            };

        
        var myChart4 = echarts.init(document.getElementById(\'chinaMap\'));
        myChart4.setOption(option);
    }

  

分类:

技术点:

相关文章:

  • 2022-01-07
  • 2021-11-21
  • 2021-11-21
  • 2021-12-16
  • 2022-12-23
  • 2022-02-07
  • 2021-12-04
猜你喜欢
  • 2021-12-19
  • 2021-07-04
  • 2021-11-24
  • 2021-12-08
  • 2022-12-23
  • 2021-12-21
相关资源
相似解决方案