美文网首页前端开发
echarts绘制中国地图

echarts绘制中国地图

作者: miner敏儿 | 来源:发表于2017-10-24 15:20 被阅读0次

    最近项目中需要出现中国地图 ,因为总是使用echarts写柱状图和饼图,头一次写地图,所以就给记录下来 先把整个代码贴上 ,下次用到的时候可以直接拿过来 ,然后在这个基础上做修改就ok了,
    因为是中国地图所以要引入China.js,这个js好像不好找,

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=EDGE">
        <title>ECharts</title>
        <!--<link rel="stylesheet" type="text/css" href="css/main.css"/>-->
        <script src="../jquery.js"></script>
        <script src="echarts.min.js"></script>
        <script src="china.js"></script>
        <style>#china-map {width:1000px; height: 1000px;margin: auto;}</style>
    </head>
    <body>
    <div id="china-map"></div>
    <script>
        var myChart = echarts.init(document.getElementById('china-map'));
        var option = {
            title : {
                text: '订单量',
                subtext: '纯属虚构',
                x:'center'
            },
            tooltip : {//提示框组件。
                trigger: 'item'//数据项图形触发,主要在散点图,饼图等无类目轴的图表中使用。
            },
            legend: {
                orient: 'horizontal',//图例的排列方向
                x:'left',//图例的位置
                data:['订单量']
            },
    
            visualMap: {//颜色的设置  dataRange
                x: 'left',
                y: 'center',
                splitList: [
                    {start: 1500},
                    {start: 900, end: 1500},
                    {start: 310, end: 1000},
                    {start: 200, end: 300},
                    {start: 10, end: 200, label: '10 到 200(自定义label)'},
                    {start: 5, end: 5, label: '5(自定义特殊颜色)', color: 'black'},
                    {end: 10}
                ],
    //            min: 0,
    //            max: 2500,
    //            calculable : true,//颜色呈条状
                text:['高','低'],// 文本,默认为数值文本
                color: ['#E0022B', '#E09107', '#A3E00B']
            },
            toolbox: {//工具栏
                show: true,
                orient : 'vertical',//工具栏 icon 的布局朝向
                x: 'right',
                y: 'center',
                feature : {//各工具配置项。
                    mark : {show: true},
                    dataView : {show: true, readOnly: false},//数据视图工具,可以展现当前图表所用的数据,编辑后可以动态更新。
                    restore : {show: true},//配置项还原。
                    saveAsImage : {show: true}//保存为图片。
                }
            },
            roamController: {//控制地图的上下左右放大缩小 图上没有显示
                show: true,
                x: 'right',
                mapTypeControl: {
                    'china': true
                }
            },
            series : [
                {
                    name: '订单量',
                    type: 'map',
                    mapType: 'china',
                    roam: false,//是否开启鼠标缩放和平移漫游
                    itemStyle:{//地图区域的多边形 图形样式
                        normal:{//是图形在默认状态下的样式
                            label:{
                                show:true,//是否显示标签
                                textStyle: {
                                    color: "rgb(249, 249, 249)"
                                }
                            }
                        },
                        emphasis:{//是图形在高亮状态下的样式,比如在鼠标悬浮或者图例联动高亮时
                            label:{show:true}
                        }
                    },
                    top:"3%",//组件距离容器的距离
                    data:[
                        {name: '北京',value: Math.round(Math.random()*2000)},
                        {name: '天津',value: Math.round(Math.random()*2000)},
                        {name: '上海',value: Math.round(Math.random()*2000)},
                        {name: '重庆',value: Math.round(Math.random()*2000)},
                        {name: '河北',value: 0},
                        {name: '河南',value: Math.round(Math.random()*2000)},
                        {name: '云南',value: 5},
                        {name: '辽宁',value: 305},
                        {name: '黑龙江',value: Math.round(Math.random()*2000)},
                        {name: '湖南',value: 200},
                        {name: '安徽',value: Math.round(Math.random()*2000)},
                        {name: '山东',value: Math.round(Math.random()*2000)},
                        {name: '新疆',value: Math.round(Math.random()*2000)},
                        {name: '江苏',value: Math.round(Math.random()*2000)},
                        {name: '浙江',value: Math.round(Math.random()*2000)},
                        {name: '江西',value: Math.round(Math.random()*2000)},
                        {name: '湖北',value: Math.round(Math.random()*2000)},
                        {name: '广西',value: Math.round(Math.random()*2000)},
                        {name: '甘肃',value: Math.round(Math.random()*2000)},
                        {name: '山西',value: Math.round(Math.random()*2000)},
                        {name: '内蒙古',value: Math.round(Math.random()*2000)},
                        {name: '陕西',value: Math.round(Math.random()*2000)},
                        {name: '吉林',value: Math.round(Math.random()*2000)},
                        {name: '福建',value: Math.round(Math.random()*2000)},
                        {name: '贵州',value: Math.round(Math.random()*2000)},
                        {name: '广东',value: Math.round(Math.random()*2000)},
                        {name: '青海',value: Math.round(Math.random()*2000)},
                        {name: '西藏',value: Math.round(Math.random()*2000)},
                        {name: '四川',value: Math.round(Math.random()*2000)},
                        {name: '宁夏',value: Math.round(Math.random()*2000)},
                        {name: '海南',value: Math.round(Math.random()*2000)},
                        {name: '台湾',value: Math.round(Math.random()*2000)},
                        {name: '香港',value: Math.round(Math.random()*2000)},
                        {name: '澳门',value: Math.round(Math.random()*2000)}
                    ]
                }
            ]
        };
        myChart.setOption(option);
        myChart.on('mouseover', function (params) {
            var dataIndex = params.dataIndex;
            console.log(params);
        });
    </script>
    </body>
    </html>
    
    image.png
       dataRange: {//颜色的变化设置
                x: 'left',
                y: 'bottom',
                splitList: [
                    {start: 1500},
                    {start: 900, end: 1500},
                    {start: 310, end: 1000},
                    {start: 200, end: 300},
                    {start: 10, end: 200, label: '10 到 200(自定义label)'},
                    {start: 5, end: 5, label: '5(自定义特殊颜色)', color: 'black'},
                    {end: 10}
                ],
    //            calculable : true,//颜色呈条状
    //            text:['高','低'],// 文本,默认为数值文本
                color: ['#E0022B', '#E09107', '#A3E00B']
            },
    

    貌似dataRange换成visualMap效果是一样的 我也没发现不同


    image.png

    如果要想呈现这种样式可以设置calculable为true

       visualMap: {//颜色的设置  dataRange
                x: 'left',
                y: 'bottom',
               splitList: [
                    {start: 1500},
                    {start: 900, end: 1500},
                    {start: 310, end: 1000},
                    {start: 200, end: 300},
                    {start: 10, end: 200, label: '10 到 200(自定义label)'},
                    {start: 5, end: 5, label: '5(自定义特殊颜色)', color: 'black'},
                    {end: 10}
                ],
    //            min: 0,
    //            max: 2500,
                calculable : true,//颜色呈条状
                text:['高','低'],// 文本,默认为数值文本
                color: ['#E0022B', '#E09107', '#A3E00B']
            },
    

    设置calculable为true为线性渐变,splitList就没有效果了,并且最小数值是0 最大是200 自己也可以使用min和max设置

    如果设置默认文本 text 那么设置的splitList就没有效果了

    image.png

    一些属性我也在代码后面做了说明,反正还挺容易理解的,如果项目中还需要一些细节处理就可以翻看api

    本例子参照

    http://echarts.baidu.com/echarts2/doc/example/map1.html

    相关文章

      网友评论

        本文标题:echarts绘制中国地图

        本文链接:https://www.haomeiwen.com/subject/eghtpxtx.html