因為最近工作需要,接觸到了highcharts 與echarts ,對比了一下,目前公司系統用的是highcharts的圖表插件,就不想再去用echarts的圖標插件了,奈何highcharts地圖對中國地圖支持不友好,領導要求地圖,沒辦法,逼着自己去嘗試了一把echarts ,網上關於echarts地圖下鑽的資料真心少,要么是騙分的,要么是不正常的,或許是我不懂大神的寫法吧,初入echarts ,小白一個,如果有寫的不好的地方。大家莫怪,好了,廢話不多說了。上代碼,
最近用hicharts無意中發現了一個比較好看的國》省》市三級下鑽的地圖,附上鏈接
https://code.hcharts.cn/highmaps/FSSm7A
ECharts 之前提供下載的矢量地圖數據來自第三方,由於部分數據不符合國家《測繪法》規定,目前暫時停止下載服務。
建議大家使用以百度地圖為底圖的形式,參考實例:http://echarts.baidu.com/demo.html#map-polygon
項目目錄結構如下:

json 下面放的是全國的各個省的json文件,js下面放了個貴州省的json 與貴州省下面各市json,如需下載地圖json,
各省json 下載地址:http://echarts.baidu.com/download-map.html
各省下面市的json下載地址:http://ecomfe.github.io/echarts-map-tool/
記得把如下選項選中,否則地圖不會顯示各縣的邊界線

2,文件下載完畢,接下來就是寫代碼咯,
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible"content="IE=9; IE=8; IE=7; IE=EDGE" />
<link rel="stylesheet" href="css/index.css" />
<script type="text/javascript" src="Plugins/jquery-easyui/jquery.min.js"></script>
<script type="text/javascript" src="js/echarts.min.js" ></script>
<script>
function goBackProeMap(){
$('#cont_pro_map').css('display','block');
$('#cont_city_map').css('display','none');
$('.retPro').css('display','none');
}
</script>
</head>
<body>
<div class="main" style="width:1300px;height:;margin:50px auto;">
<div id="p" style="width:1300px;height:680px;padding:10px;background:#F6F8F7;">
<!--下屬單位完成項目概況-->
<div class="proj fl pro_map" style="position: relative;">
<div class="proj_top">
<p>地圖總覽</p>
</div>
<div class="retPro">
<a href="javascript:void(0);" onclick="goBackProeMap()">
返回省級地圖
</a>
</div>
<div id="cont_pro_map" style="width:580px;height:440px;float:left;position: absolute;left:10px;top:50px;z-index:1;"></div>
<div id="cont_city_map" style="width:580px;height:440px;float:left;display: none;position: absolute;left:10px;top:50px;z-index:99;"></div>
</div>
</div>
</div>
<script>
$().ready(function(){
/*echarts*/
$.get('js/guizhou.json', function (mapJson) {
echarts.registerMap('gui_zhou', mapJson);
var chart = echarts.init(document.getElementById('cont_pro_map'));//在id為mainMap的dom元素中顯示地圖
chart.setOption({
tooltip: {
trigger: 'item',
formatter: function loadData(result){//回調函數,參數params具體格式參加官方API
//鼠標放到某個地市上,顯示這個地市的名稱加人口數
//例如 params.name:當前地市名稱。params.value:你傳入的json數據與當前地市匹配的一項。
//params.data.value:你傳入的json數據與當前地市匹配的一項中'value'對應的數據
return result.name+'<br />數據:'+result.value;
}
},
dataRange:{
min:0,
max:50,
splitNumber:0,
text:['高','低'],
realtime:false,
calculable:false,
selectedMode:false,
realtime:false,
itemWidth:10,
itemHeight:60,
color:['lightskyblue','#f2f2f2']
},
title:{
text:'貴州省各市區數據總覽',
//subtext:'',
x:'center',
y:'top',
textAlign:'left'
},
series: [{
type: 'map',
map: 'gui_zhou',//要和echarts.registerMap()中第一個參數一致
scaleLimit: { min: 0.8, max: 1.9 },//縮放
mapLocation:{
y:60
},
itemSytle:{
emphasis:{label:{show:false}}
},
label: {
normal: {
show: true
},
emphasis: {
show: true
}
},
data : [
{name:'畢節市',value:'5'},
{name:'遵義市',value:'20'},
{name:'銅仁市',value:'10'},
{name:'六盤水市',value:'30'},
{name:'安順市',value:'50'},
{name:'貴陽市',value:'15'},
{name:'黔東南苗族侗族自治州',value:'33'}
]//dataParam//人口數據:例如[{name:'濟南',value:'100萬'},{name:'菏澤',value:'100萬'}......]
}]
}),
chart.on('click', function (result) {//回調函數,點擊時觸發,參數params格式參加官方API
setTimeout(function () {
$('#cont_pro_map').css('display','none');
$('#cont_city_map').css('display','block');
$('.retPro').css('display','block');
}, 500);
//選擇地級市的單擊事件
var selectCity = result.name;
//alert(selectCity);
// 調取后台數據
$.get('js/'+selectCity+'.json', function (Citymap) {
echarts.registerMap(selectCity, Citymap);
var myChartCity = echarts.init(document.getElementById('cont_city_map'));
myChartCity.setOption({
tooltip: {
trigger: 'item',
formatter: function loadData(result){//回調函數,參數params具體格式參加官方API
//鼠標放到某個地市上,顯示這個地市的名稱加人口數
//例如 params.name:當前地市名稱。params.value:你傳入的json數據與當前地市匹配的一項。
//params.data.value:你傳入的json數據與當前地市匹配的一項中'value'對應的數據
return result.name+'<br />數據:'+result.value;
}
},
dataRange:{
min:0,
max:50,
text:['高','低'],
realtime:false,
calculable:false,
splitNumber:0,
itemWidth:10,
itemHeight:60,
color:['lightskyblue','#f2f2f2']
},
title:{
text:selectCity+'地圖數據總覽',
//subtext:'',
x:'center',
y:'top',
textAlign:'left'
},
series: [{
type: 'map',
map: selectCity ,//要和echarts.registerMap()中第一個參數一致
scaleLimit: { min: 0.8, max: 1.9 },//縮放
mapLocation:{
y:60
},
itemSytle:{
emphasis:{label:{show:false}}
},
label: {
normal: {
show: true
},
emphasis: {
show: true
}
},
data : [
{name:'大方縣',value:'5'},
{name:'金沙縣',value:'0'},
{name:'織金縣',value:'10'},
{name:'七星關區',value:'30'},
{name:'納雍縣',value:'50'},
{name:'赫章縣',value:'15'}
]//dataParam//人口數據:例如[{name:'濟南',value:'100萬'},{name:'菏澤',value:'100萬'}......]
}]
})
myChartCity.on('click',function(rel){
setTimeout(function () {
//$('#cont_pro_map').css('display','block');
//$('#cont_city_map').css('display','none');
}, 500);
})
});
});
});
});
</script>
</body>
</html>
下面是css文件,
@charset "utf-8";
/* CSS Document */
body{margin:0;font-size:12px; color:#383838;line-height:1.8;font-family:"microsoft yahei"; }
form,ul,li,ol,li,dl,dt,dd,img,p,h1,h2,h3,h4,h5,h6,input,table,th,tr{margin:0;padding:0; }
h1,h2,h3,h4,h5,h6{font-size:12px;}
input,select{font-size:12px;outline: none;}
img{border:0;}
ul,li{list-style-type:none;}
strong,b{font-weight:bold;}
em {font-style:normal;}
h1,h2,h3,h4,h5,h6 {font-weight:normal;}
/* Link 全局鏈接樣式 2012.7.28 */
a{color:#393939;text-decoration:none; cursor:pointer;}
.display_no{display:none;}
.display_yes{display:block;}
.fl{float:left}
.fr{float:right;}
.clear{clear:both;}
.main_top{width:100%;height:136px;}
.main_top .mdiv{display: inline-block;width:18.743333%;height:120px;background: #fff;display: block;float:left;margin:10px 20px 0px 0;}
.mdiv img {margin:30px 0 30px 20px;width:60px;}
.acsur{float:right;margin-right:10px;margin-top:25px;color:#fff;width: 120px;overflow: hidden;}
.acsur span{display: block;font-size:20px;text-align: center;}
.acsur p{font-size:24px;text-align: center;}
/*main_nav*/
.main_nav{width:35%;margin:15px 0;height:150px;background: #fff;float: left;border-radius: 5px;
box-shadow: 2px 2px 2px #ccc;}
.comp_top{margin:5px 10px;height:30px;line-height:30px;border-bottom:1px solid #ccc;}
.comp_top P{font-size:16px;font-weight: bold;}
.comp_list{margin:5px 10px;height:100px;}
.comp_list ul li{margin-left:10px;float:left;list-style-type: none;width:120px;height:50px;margin-top:20px;border-right: 1px solid #f2f2f2;}
.comp_list ul li:last-child{border:none;}
.comp_list ul li p{text-align: center;font-size:24px;}
.comp_list ul li span{display:block;text-align: center;font-size:18px;}
.pro_bm{color:#FF9900;}
.pro_user{color:#14ABE4;}
.ml{float:right;}
/*comp_xj*/
.main_nav_cent{width:26.55555%;float:left;background: #fff;margin:15px 20px;height:150px;border-radius: 5px;
box-shadow: 2px 2px 2px #ccc;}
/*proj*/
.proj{width:49.2%;background: #fff;margin-top:5px;display: inline-block;margin-bottom: 20px;border-radius: 5px;
box-shadow: 2px 2px 2px #ccc;}
.proj_top{margin:5px 10px;height:30px;border-bottom: 1px solid #ccc;line-height:30px;}
.proj_top p{font-size:16px;font-weight: bold;}
.proj_row{width:100%;margin-top:40px;clear:both;background: #fff;border-radius: 5px;
box-shadow: 2px 2px 2px #ccc;margin-bottom: 20px;}
/*map*/
.pro_map{width:70%;height:490px;margin-bottom: 10px;}
.proj_map_list{width:29%;height:490px;background: #fff;border-radius: 5px;
box-shadow: 2px 2px 2px #ccc;margin-top:5px;}
#map_list ul li{margin:10px 10px;height:30px;line-height: 30px;font-size:14px;border: 1px solid #ccc;
box-shadow: 1px 1px 1px #ccc;}
#map_list ul a{display: block;}
#map_list ul li span{float:left;margin-left:10px;width: 40%;border-right:1px solid #ccc;}
#map_list ul li em{font-style:normal;float:right;margin-right:10px;width:50%;height:30px;overflow: hidden;text-indent: 15px;}
.jh{color:#D84F4B;}
.wc{color:#FF0000;}
.ncl{color:#0088CC;}
.gd{color:#588EBD;}
.gs{color:#44B6AE;}
.zb{color:#14ABE4;}
.list{width: 31%;height: 440px;float: right;margin-right: 10px;border-radius:5px;border:1px solid #f2f2f2;
box-shadow: 2px 2px 2px #ccc;}
/*排名*/
.ranking ul li {margin:10px 20px;height:20px;line-height: 20px;font-size:16px;margin-top:20px;}
.ranking ul li span{float:left;margin-left:10px;width: 30%;overflow: hidden;height:20px;}
.ranking ul li em{font-style:normal;float:left;margin-left:10px;width:60%;height:20px;overflow: hidden;background: #d0ddf3;
position: relative;display: inline-block;}
.sp{display: inline-block;position: absolute;left:0;background: #029be5;height:20px;}
.sp_line{display: inline-block;width: 60%;text-align: center;color: #fff;z-index: 1;position: relative;font-size:14px;}
/*css3動畫效果*/
#cont_pro_map{
-moz-transition: all .2s ease-out 0s;
-o-transition: all .2s ease-out 0s;
-webkit-transition: all .2s ease-out;
-webkit-transition-delay: 0s;
transition: all .2s ease-out 0s;
}
#cont_city_map{
-moz-transition: all .2s ease-out 0s;
-o-transition: all .2s ease-out 0s;
-webkit-transition: all .2s ease-out;
-webkit-transition-delay: 0s;
transition: all .2s ease-out 0s;
}
/*返回省級地圖按鈕*/
.retPro{z-index:999;position: absolute;top:50px;left:10px;display: none;}
.retPro a{height:30px;line-height: 30px;border:1px solid #ccc;padding:5px 10px;margin-left:20px;border-radius:5px;cursor: pointer;}
記得在js下面引入省的json 與 省下市的地圖json
最后來張效果圖


本文為作者原創,轉載請注明
附上百度網盤:http://pan.baidu.com/s/1nvRwLGt
github:https://github.com/oliverdai/echarts
如不能下載,請留言
