码迷,mamicode.com
首页 > 其他好文 > 详细

echart中国地图

时间:2020-06-08 11:05:35      阅读:608      评论:0      收藏:0      [点我收藏+]

标签:sel   ase   ack   normal   format   ali   tools   ted   ext   

<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);
    }

  

echart中国地图

标签:sel   ase   ack   normal   format   ali   tools   ted   ext   

原文地址:https://www.cnblogs.com/xhrr/p/13064053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!