百度地图-中国地图

链接: https://pan.baidu.com/s/1Yf9Qtbd9xcAINxGX08A2wg 提取码: sh96 复制这段内容后打开百度网盘手机App,操作更方便哦

china.js自己下载引入即可 

注意要引入echarts.js

<div id="main"></div>


  <script type="text/javascript" src="echarts-3.8.5/dist/echarts.js"></script>

<script type="text/javascript" src="plugins/china.js"></script>

//js

var myChart = echarts.init(document.getElementById('main'));
var
optionMap = { title : { text : "销量分省统计表", x : "center", textStyle : { color : "#fff" } }, tooltip : { trigger : "item", textStyle : { color : "#fff" } }, dataRange : { min : 0, max : maxNum, x : "left", y : "bottom", text : ["高", "低"], calculable : !0, inRange : { color : ['lightskyblue', 'yellow', 'red'] }, textStyle : { color : "#fff" } }, roamController : { show : !0, x : "right", mapTypeControl : { china : !0 } }, roam : true, series : skuInfo.length > 0 ? skuInfo : [{ "name" : "暂无数据", "type" : "map", "mapType" : "china", "zoom" : 1.2,//地图默认缩放比例 "itemStyle" : { "normal" : { "label" : { "show" : true } }, "emphasis" : { "label" : { "show" : true } } }, "data" : [{ "name" : "广东省", "value" : 0 }] }] };  

 

猜你喜欢

转载自www.cnblogs.com/web-qianhx/p/10304230.html