基本信息
源码名称:echarts中国地图,省内地图实例
源码大小:5.06M
文件格式:.zip
开发语言:js
更新时间:2020-06-15
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
echarts形式展示中国地图,各省市地图
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title></title> <style> #container { width: 100%; height: 800px; } </style> </head> <body> <div id="container"></div> <script type="text/javascript" src="./js/jquery-1.8.2.min.js"></script> <script type="text/javascript" src="./js/echarts_map.js"></script> <script type="text/javascript" src="json/china.js"></script> <script> var mapList = [ { "id": "11", "name": "北京市" }, { "id": "12", "name": "天津市" }, { "id": "13", "name": "河北省" }, { "id": "14", "name": "山西省" }, { "id": "15", "name": "内蒙古自治区" }, { "id": "21", "name": "辽宁省" }, { "id": "22", "name": "吉林省" }, { "id": "23", "name": "黑龙江省" }, { "id": "31", "name": "上海市" }, { "id": "32", "name": "江苏省" }, { "id": "33", "name": "浙江省" }, { "id": "34", "name": "安徽省" }, { "id": "35", "name": "福建省" }, { "id": "36", "name": "江西省" }, { "id": "37", "name": "山东省" }, { "id": "41", "name": "河南省" }, { "id": "42", "name": "湖北省" }, { "id": "43", "name": "湖南省" }, { "id": "44", "name": "广东省" }, { "id": "45", "name": "广西壮族自治区" }, { "id": "46", "name": "海南省" }, { "id": "50", "name": "重庆市" }, { "id": "51", "name": "四川省" }, { "id": "52", "name": "贵州省" }, { "id": "53", "name": "云南省" }, { "id": "54", "name": "西藏自治区" }, { "id": "61", "name": "陕西省" }, { "id": "62", "name": "甘肃省" }, { "id": "63", "name": "青海省" }, { "id": "64", "name": "宁夏回族自治区" }, { "id": "65", "name": "新疆维吾尔自治区" }, { "id": "71", "name": "台湾省" }, { "id": "81", "name": "香港特别行政区" }, { "id": "82", "name": "澳门特别行政区" } ]; function getProId(name) { for (let i in mapList) { if (mapList[i].name == name) { return mapList[i].id; } } } function getCityId(geoJson, name) { for (let i in geoJson.features) { if (geoJson.features[i].properties.name == name) { return geoJson.features[i].properties.id "00"; } } } var myChart = echarts.init(document.getElementById("container")); echarts.registerMap('china', chinaJson); myChart.setOption(option = { visualMap: { min: 0, max: 10, text: ['High', 'Low'], seriesIndex: [1], //必须设置此项,否则会覆盖标注点颜色 realtime: true, calculable: true, inRange: { color: ['lightskyblue', 'yellow', 'orangered'] }, textStyle: { color: 'lime' } }, geo: { map: 'china', roam: true, label: { normal: { show: true, textStyle: { color: '#3ebee6' //省份字体颜色 } } }, itemStyle: { normal: { borderColor: 'rgba(0, 0, 0, 0.2)' }, emphasis: { areaColor: null, shadowOffsetX: 0, shadowOffsetY: 0, shadowBlur: 20, borderWidth: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } }, series: [ { roam: true, type: 'scatter', coordinateSystem: 'geo' } ] }); myChart.on('click', function (params) { myChart.showLoading(); $.getJSON('json/geometryProvince/' getProId(params.name) '.js', function (geoJson) { myChart.hideLoading(); echarts.registerMap(getProId(params.name), geoJson); myChart.setOption(option = { visualMap: { min: 0, max: 10, text: ['High', 'Low'], seriesIndex: [1], //必须设置此项,否则会覆盖标注点颜色 realtime: true, calculable: true, inRange: { color: ['lightskyblue', 'yellow', 'orangered'] }, textStyle: { color: 'lime' } }, geo: { map: getProId(params.name), roam: true, label: { normal: { show: true, textStyle: { color: '#3ebee6' //省份字体颜色 } } }, itemStyle: { normal: { borderColor: 'rgba(0, 0, 0, 0.2)' }, emphasis: { areaColor: null, shadowOffsetX: 0, shadowOffsetY: 0, shadowBlur: 20, borderWidth: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } }, series: [ { roam: true, type: 'scatter', coordinateSystem: 'geo' } ] }); }); }); </script> </body> </html>