echarts 炫酷北京地图

本文介绍如何使用ECharts和jQuery实现北京地区地图的可视化效果。通过加载JSON格式的地图数据,并利用ECharts的map系列配置项,可以自定义地图样式,包括标签文字颜色、区域填充颜色等。

代码如下

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/echarts.js"></script>

<body>
    <div id="box" style="width: 700px;height: 700px;margin: 0 auto;"></div>
</body>

<script type="text/javascript">
    $(function() {
        var chart = echarts.init(document.getElementById("box"));
        $.getJSON('json/beijing.json', function(data) {
            echarts.registerMap('beijing', data);
            chart.setOption({
                series : {
                    type : 'map',
                    map : 'beijing',
                    layoutCenter : [ '50%', '50%' ],
                    layoutSize : '100%',
                    label : {
                        normal : {
                            show : true,
                            textStyle : {
                                color : '#fff'
                            }
                        },
                        emphasis : {
                            show : true,
                            textStyle : {
                                color : '#fff'
                            }
                        }
                    },
                    itemStyle : {
                        normal : {
                            areaColor : 'rgba(24,65,91,0.3)',
                            borderColor : '#9DDCEB',
                            borderWidth : 3,
                            shadowColor : '#9DDCEB',
                            shadowBlur : 20
                        },
                        emphasis : {
                            areaColor : 'rgba(24,65,91,0.3)'
                        }
                    }
                }
            })
        });
    });
</script>

效果图

点击下载

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值