diff --git a/gicc/Scripts/canvas-en.js b/gicc/Scripts/canvas-en.js new file mode 100644 index 0000000000000000000000000000000000000000..d9377e6c5f227d71d925eab5e3338bc7058263e5 --- /dev/null +++ b/gicc/Scripts/canvas-en.js @@ -0,0 +1,339 @@ + + + +function RiskLoad() { + let endThickDom = document.getElementById('progress-thick'); + let endThinDom = document.getElementById('progress-thin'); + let arrayColor = ['#ff107f', '#ff8010', '#10ffef', '#2bff10'] //红,黄,蓝,绿 + let num = [0, 0, 0]; //低中高状态值得数组 + + // 使用后台返回数据填充 + $.getJSON("http://gicc-back-end:2019/data-plat/risk/statistics", function(data) { + const risk = data.data; + const lowRisk = risk.lowRisk ? risk.lowRisk : 0; + const mediumRisk = risk.mediumRisk ? risk.mediumRisk : 0; + const highRisk = risk.highRisk ? risk.highRisk : 0; + const totalRisk = lowRisk + mediumRisk + highRisk; + num[0] = totalRisk ? ((lowRisk / totalRisk) * 100) : 0; + num[1] = totalRisk ? ((mediumRisk / totalRisk) * 100) : 0; + // num[2] = totalRisk ? ((highRisk / totalRisk) * 100) : 0; + num[2] = 100 - num[0].toFixed(1) - num[1].toFixed(1); + }); + + + // // 调用定时器实现动态效果 + let timer = null; + let n1 = 0; + let timer2 = null; + let n2 = 0; + setTimeout(() => { + setTimeout(() => { + init(num[0]) + n1 = 0; + n2 = 0; + }, 0) + setTimeout(() => { + init(num[1]) + n1 = 0; + n2 = 0; + }, 3500) + setTimeout(() => { + init(num[2]) + n1 = 0; + n2 = 0; + setTimeout(() => { + $(endThickDom).animate({ + opacity: 0 + }, 1000) + $(endThinDom).animate({ + opacity: 0 + }, 1000) + }, 1000) + }, 6000) + setTimeout(() => { + end('progress-thick') + $(endThickDom).animate({ + opacity: 1 + }, 1000) + $(endThinDom).animate({ + opacity: 1 + }, 1000) + }, 8000) + }, 1500) + + /** + *执行动画主方法 + * + * @param {Number} param 数据值 + */ + function init(param) { + loadCanvasThin(param / 100, param); + loadCanvasTchik(param / 100, param); + } + + function loadCanvasTchik(nowT, value) { + timer2 = setInterval(() => { + if (n2 >= nowT.toFixed(3)) { + clearInterval(timer2); + } else { + n2 += 0.001; + if (value >= 33 && value < 50) { + circleProgressThick(n2, 'progress-thick', arrayColor[2]) + } else if (value >= 50 && value < 100) { + circleProgressThick(n2, 'progress-thick', arrayColor[3]) //低 + } else if (value >= 6 && value < 33) { + circleProgressThick(n2, 'progress-thick', arrayColor[1]) //中 + } else if (value >= 0 && value < 6) { + circleProgressThick(n2, 'progress-thick', arrayColor[0], 5) //高 + } + } + }, 1); + } + + function loadCanvasThin(nowT) { + timer = setInterval(() => { + if (n1 >= nowT.toFixed(3)) { + clearInterval(timer); + } else { + n1 += 0.001; + circleProgressThin(n1, 'progress-thin') + } + }, 1); + } + /** + * + *绘制背景粗线 + * @param {Number} cur 用来计算弧度的小数 + * @param {String} id id选择器的名称 + * @param {String} color 线的色值 + */ + function circleProgressThick(cur, id, color, step = 4) { + let canvas = document.getElementById(id); + let context = canvas.getContext('2d'); + let c_width = canvas.width + // console.log('c_width: ', c_width); + let c_height = canvas.height + // console.log('c_height: ', c_height); + context.clearRect(0, 0, c_width, c_height); + context.beginPath(); + context.arc(c_width / 2, c_height / 2, 80, Math.PI * 1 + Math.PI * 0.5 * cur, Math.PI * 1 + Math.PI * 0.5 * cur * step, + false); + let grad = context.createLinearGradient(0, 0, 300, 0); + grad.addColorStop(0, '#4D5AFF'); // 蓝 + grad.addColorStop(1, color); + context.strokeStyle = grad; + context.lineWidth = 18; + context.lineCap = "round"; + context.stroke(); + context.closePath(); + } + + /** + *绘制背景细线 + * + * @param {Number} cur 用来计算弧度 + * @param {String} id id选择器的名称 + */ + function circleProgressThin(cur, id) { + let canvas = document.getElementById(id); + let context = canvas.getContext('2d'); + let c_width = canvas.width + let c_height = canvas.height + // // 清空画布 + context.clearRect(0, 0, c_width, c_height); + context.beginPath(); + context.arc(c_width / 2, c_height / 2, 80, Math.PI * 0.5 * (1 + cur), Math.PI * 1 + (Math.PI * 1 * cur), false); + context.strokeStyle = '#4D5AFF'; + context.lineWidth = 3 + context.lineCap = "round"; + context.stroke(); + context.closePath(); + //文字 + text(context, cur, c_width, c_height) + + }; + /** + *绘制文字 + * + * @param {Object} context canvas对象 + * @param {Number} n 用来显示百分比的数值 + * @param {Number} c_width canvas的宽度 + * @param {Number} c_height canvas的高度 + */ + function text(context, n, c_width, c_height) { + context.font = "bold 19pt myThirdFont"; // 字体大小,样式 + context.fillStyle = '#fff'; // 颜色 + context.textAlign = 'center'; // 位置 + context.textBaseline = 'middle'; + context.moveTo(100, 75); // 文字填充位置 + let num = (n * 100).toFixed(1)//!!!修改小数精度位数 + let status = '' + if (num >= 33 && num < 50) { + status = 'low' + } else if (num >= 50 && num < 100) { + status = 'low' + } else if (num >= 6 && num < 33) { + status = 'medium' + } else if (num >= 0 && num < 6) { + status = 'high' + } + context.fillText(num + "%", c_width / 2, (c_height / 2) - 30); + context.font = "bold 25pt myFourthFont" + context.fillStyle = '#fff'; // 颜色 + context.textAlign = 'center'; // 位置 + context.textBaseline = 'middle'; + context.moveTo(100, 75); // 文字填充位置 + context.fillText(status, c_width / 2, (c_height / 2 + 5)); + context.font = "bold 12pt myThirdFont" + context.fillStyle = '#fff'; // 颜色 + context.textAlign = 'center'; // 位置 + context.textBaseline = 'middle'; + context.moveTo(100, 75); // 文字填充位置 + context.fillText("risk level", c_width / 2, (c_height / 2) + 40); + } + + /** + *绘制底图刻度盘 + * + * @param {String} id id选择器的名称 + */ + function drawMark(id) { + let canvas = document.getElementById(id); + let context = canvas.getContext('2d'); + let c_width = canvas.width + let c_height = canvas.height + context.save(); + context.clearRect(0, 0, c_width, c_height); + context.beginPath(); + context.arc(c_width / 2, c_height / 2, 100, 0, 2 * Math.PI); + context.fillStyle = 'rgba(0, 0, 0, 0.2)'; + context.fill(); + context.lineWidth = "2"; + context.strokeStyle = "rgba(255, 255, 255, 0.2)"; + context.translate(canvas.width / 2, canvas.height / 2); + for (let i = 0; i < 120; i++) { + context.rotate(3 / 180 * Math.PI); + context.beginPath(); + context.moveTo(0, -75); + context.lineTo(0, -85); + context.stroke(); + } + context.restore(); + } + + // 最后的圆盘 + function end(id, color) { + let canvas1 = document.getElementById('progress-thin'); + let context1 = canvas1.getContext('2d'); + let c_width1 = canvas1.width + let c_height1 = canvas1.height + context1.clearRect(0, 0, c_width1, c_height1); + + + let canvas = document.getElementById(id); + let context = canvas.getContext('2d'); + let c_width = canvas.width + let c_height = canvas.height + context.clearRect(0, 0, c_width, c_height); + context.beginPath(); + context.arc(c_width / 2, c_height / 2, 80, Math.PI * 0, Math.PI * 1, + false); + let grad2 = context.createLinearGradient(70, 0, 300, 0); + grad2.addColorStop(0, '#4D5AFF'); // 蓝 + grad2.addColorStop(1, '#2bff10'); //绿 + context.strokeStyle = grad2; + context.lineWidth = 20 + context.lineCap = "round"; + context.stroke(); + + context.beginPath(); + context.arc(c_width / 2, c_height / 2, 80, Math.PI * 1.1, Math.PI * 1.2, + false); + let grad = context.createLinearGradient(116, 0, 150, 0); + grad.addColorStop(0, '#9808a9'); // 蓝 + grad.addColorStop(1, '#ff107f'); //红 + + // let grad = context.createLinearGradient(0, 0, 150, 0); + // grad.addColorStop(0, '#4D5AFF'); // 蓝 + // grad.addColorStop(1, '#ff107f'); //红 + context.strokeStyle = grad; + context.lineWidth = 20 + context.lineCap = "round"; + context.stroke(); + + + context.beginPath(); + context.arc(c_width / 2, c_height / 2, 80, Math.PI * 1.3, Math.PI * 1.9, + false); + let grad1 = context.createLinearGradient(70, 0, 300, 0); + grad1.addColorStop(0, '#4D5AFF'); // 蓝 + grad1.addColorStop(1, '#ff8010'); //黄 + context.strokeStyle = grad1; + context.lineWidth = 20 + context.lineCap = "round"; + context.stroke(); + + context.font = "bold 20pt Arial"; // 字体大小,样式 + context.fillStyle = 'white'; // 颜色 + context.textAlign = 'center'; // 位置 + context.textBaseline = 'middle'; + context.moveTo(100, 75); // 文字填充位置 + context.fillText('risk', c_width / 2, (c_height / 2 - 20)); + context.fillText("level", c_width / 2, (c_height / 2) + 20); + // 高line + context.beginPath(); + context.moveTo(120, 150); + context.lineTo(80, 150); + context.lineTo(70, 140); + context.lineWidth = 1 + context.strokeStyle = "#fff"; + context.stroke(); + // 高text + context.font = " 12pt Arial"; // 字体大小,样式 + context.fillStyle = 'white'; // 颜色 + context.textAlign = 'center'; // 位置 + context.textBaseline = 'middle'; + context.moveTo(0, 0); // 文字填充位置 + context.fillText('high', 100, 120); + context.fillText(num[2].toFixed(1) + '%', 100, 140); + // 中line + + context.beginPath(); + context.moveTo(280, 150); + context.lineTo(320, 150); + context.lineTo(330, 140); + context.lineWidth = 1 + context.strokeStyle = "#fff"; + context.stroke(); + // 中text + context.font = " 12pt Arial"; // 字体大小,样式 + context.fillStyle = 'white'; // 颜色 + context.textAlign = 'center'; // 位置 + context.textBaseline = 'middle'; + context.moveTo(100, 75); // 文字填充位置 + context.fillText('medium', 300, 120); + context.fillText(num[1].toFixed(1) + '%', 300, 140); + + // 低line + + context.beginPath(); + context.moveTo(200, 290); + context.lineTo(200, 330); + context.lineTo(180, 340); + context.lineWidth = 1 + context.strokeStyle = "#fff"; + context.stroke(); + // 低 text + context.font = " 12pt Arial"; // 字体大小,样式 + context.fillStyle = 'white'; // 颜色 + context.textAlign = 'center'; // 位置 + context.textBaseline = 'middle'; + context.moveTo(100, 75); // 文字填充位置 + context.fillText('low', 170, 300); + context.fillText(num[0].toFixed(1) + '%', 170, 320); + + } + drawMark('bg') + circleProgressThick(0.34, 'progress-thick', arrayColor[2]) + circleProgressThin(0.34, 'progress-thin') +} diff --git a/gicc/Scripts/canvas-report.js b/gicc/Scripts/canvas-report.js index bf38f83e8d30605933c2ce9eae341324106dea08..51b6a48a11d517d9be874628360b96c1df49438e 100644 --- a/gicc/Scripts/canvas-report.js +++ b/gicc/Scripts/canvas-report.js @@ -5,10 +5,10 @@ function RiskLoad() { let endThickDom = document.getElementById('progress-thick'); let endThinDom = document.getElementById('progress-thin'); let arrayColor = ['#ff107f', '#ff8010', '#10ffef', '#2bff10'] //红,黄,蓝,绿 - let num = [65.0, 30.3, 4.7]; //低中高状态值得数组 + let num = [0, 0, 0]; //低中高状态值得数组 // 使用后台返回数据填充 - $.getJSON("http://172.30.2.105:2019/data-plat/risk/statistics", function(data) { + $.getJSON("http://gicc-back-end:2019/data-plat/risk/statistics", function(data) { const risk = data.data; const lowRisk = risk.lowRisk ? risk.lowRisk : 0; const mediumRisk = risk.mediumRisk ? risk.mediumRisk : 0; diff --git a/gicc/Scripts/chinaData-en.js b/gicc/Scripts/chinaData-en.js new file mode 100644 index 0000000000000000000000000000000000000000..185b7a94312777088afb986466f470ccc8ab354a --- /dev/null +++ b/gicc/Scripts/chinaData-en.js @@ -0,0 +1,11864 @@ +var map1 = { + // 江苏省 + num1: 0,//早癌数, + num2: 0,//血检数 + bi: 0 +}; +var map2 = { + // 上海省 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map3 = { + // 广东省 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map4 = { + // 重庆省 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map5 = { + // 宁夏 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map6 = { + // 福建 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map7 = { + // 河南 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map8 = { + // 四川 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map9 = { + // 北京 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 +}; +var map10 = { + //湖北 + num1: 0, + num2: 0, + bi: 0 +}; +var map11 = { + //山东 + num1: 0, + num2: 0, + bi: 0 +}; +var map12 = { + //广西 + num1: 0, + num2: 0, + bi: 0 +}; +var map13 = { + //内蒙古 + num1: 0, + num2: 0, + bi: 0 +}; +var map14 = { + //安徽 + num1: 0, + num2: 0, + bi: 0 +}; +var map15 = { + //西藏 + num1: 0, + num2: 0, + bi: 0 +}; +var map16 = { + //甘肃 + num1: 0, + num2: 0, + bi: 0 +}; +var map17 = { + //黑龙江省 + num1: 0, + num2: 0, + bi: 0 +}; +var map18 = { + //浙江 + num1: 0, + num2: 0, + bi: 0 +}; +var map19 = { + //江西 + num1: 0, + num2: 0, + bi: 0 +}; +var map20 = { + //陕西 + num1: 0, + num2: 0, + bi: 0 +}; +var map21 = { + //河北 + num1: 0, + num2: 0, + bi: 0 +}; +var map22 = { + //山西 + num1: 0, + num2: 0, + bi: 0 +}; +var map23 = { + //云南 + num1: 0, + num2: 0, + bi: 0 +}; +var map24 = { + //青海 + num1: 0, + num2: 0, + bi: 0 +}; + +var map = [map1, map2, map3, map4, map5, map6, + map7, map8, map9, map10, map11, map12, + map13, map14, map15, map16, map17, map18, + map19, map20, map21, map22, map23, map24]; + +// 使用后台返回数据填充 +$.getJSON("http://gicc-back-end:2019/data-plat/serum/statistics", function (data) { + let serum = data.data; + $.each(pointData, function (idx, item) { + let n = idx % 6; + let obj = serum.dtoList.filter(dto => dto.provinceName.includes(item.province)); + map[idx].num1 = obj[0] ? obj[0].earlyCancer : 0; + map[idx].num2 = obj[0] ? obj[0].serumTestActual : 0; + map[idx].bi = map[idx].num2 !== 0 ? Number((map[idx].num1 / map[idx].num2) * 100).toFixed(1) : 0; + for (let i = 0; i < 6 - n; i++) { + var str = series[idx + i].markLine.data[n * 2][0].label.normal.formatter; + var mark = series[idx + i].markLine.data[n * 2][0].label.normal.mark; + switch (mark) { + case 'mark1': + str = [ + '{Province|'+item.province_en+'}' + + '\n{l1|' + map[idx].num1 + '} {l2|' + map[idx].num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map[idx].bi + '%} ' + + ' \n' + ].join('\n'); + break; + case 'mark2': + str = [ + '{Province|'+item.province_en+'}\n{l1|' + map[idx].num1 + '} {l2|' + map[idx].num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map[idx].bi + '%}\n' + ].join('\n'); + break; + case 'mark3': + str = [ + '{Province|'+item.province_en+'}' + '\n{l1|' + map[idx].num1 + '} {l2|' + map[idx].num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map[idx].bi + '%}' + ' \n' + ].join('\n'); + break; + case 'mark4': + str = [ + '{Province|'+item.province_en+'}' + + '\n{l1|' + map[idx].num1 + '} {l2|' + map[idx].num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|'+map[idx].bi+'%} ' + + ' \n' + ].join('\n'); + break; + case 'mark5': + str = [ + '\n{Province| '+item.province_en+'}' + + '\n {l1|' + map[idx].num1 + '} {l2|' + map[idx].num2 + '} ' + + '\n {l3|early cancer} {l4|serumtest} ' + + '\n {l5|' + map[idx].bi + '%} ' + + ' \n' + ].join('\n'); + break; + case 'mark6': + str = [ + '{Province|'+item.province_en+'}' + + '\n{l1|' + map[idx].num1 + '} {l2|' + map[idx].num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map[idx].bi + '%} ' + + ' \n' + ].join('\n'); + break; + default: + break; + } + series[idx + i].markLine.data[n * 2][0].label.normal.formatter = str; + } + }); +}); + + +var series1 = { + name: '江苏省', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江苏', + selected: true + + }], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "江苏省", + padding: [8, 0, 30, 10], + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Jiangsu}' + + '\n{l1|' + map1.num1 + '} {l2|' + map1.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map1.bi + '%} ' + + ' \n' + ].join('\n'), + position: 'end', + distance: 20, + rich: { + block: { + height: 50, + }, + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 85, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 85, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [118.767413, 32.041544] + }, + + { + name: "江苏省", + coord: [95.984722, 49.756539] + } + + ], + [ + + { + + symbol: 'none', + coord: [95.984722, 49.756539] + }, + { + + symbol: 'none', + coord: [77.984722, 49.756539] + } + ] + + + ], + animation: false + } +}; +var series2 = { + name: '上海', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '上海', + selected: true + + }, + { + name: '江苏', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "江苏省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Jiangsu}' + + '\n{l1|' + map1.num1 + '} {l2|' + map1.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map1.bi + '%} ' + + ' \n' + ].join('\n'), + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 85, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 85, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [118.767413, 32.041544] + }, + + { + name: "江苏省", + coord: [95.984722, 49.756539] + } + + ], + [ + + { + + symbol: 'none', + coord: [95.984722, 49.756539] + }, + { + + symbol: 'none', + coord: [77.984722, 49.756539] + } + ], + [{ + value: [0, 309], + name: "上海", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Shanghai}' + + '\n{l1|' + map2.num1 + '} {l2|' + map2.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map2.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [0, 10, -130, 280], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [59, 0, 18, 0], + // padding: 5 , + fontSize: 50, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [121.472644, 31.231706] + }, + + { + name: "上海", + coord: [126.472644, 50.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [126.472644, 50.231706] + }, + { + + symbol: 'none', + coord: [141.472644, 50.231706] + } + ] + + + ], + animation: false + } +}; +var series3 = { + name: '广东', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江苏', + selected: true + + }, + { + name: '上海', + selected: true + + }, + { + name: '广东', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + silent: true, + symbolSize: 20, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + + [{ + value: [4, 5734], + name: "江苏省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Jiangsu}' + + '\n{l1|' + map1.num1 + '} {l2|' + map1.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map1.bi + '%} ' + + ' \n' + ].join('\n'), + position: 'end', + distance: 20, + rich: { + block: { + height: 50, + }, + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 85, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 85, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [118.767413, 32.041544] + }, + + { + name: "江苏省", + coord: [95.984722, 49.756539] + } + + ], + [ + + { + + symbol: 'none', + coord: [95.984722, 49.756539] + }, + { + + symbol: 'none', + coord: [77.984722, 49.756539] + } + ], + [{ + value: [0, 309], + name: "上海", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Shanghai}' + + '\n{l1|' + map2.num1 + '} {l2|' + map2.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map2.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [0, 10, -130, 280], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [59, 0, 18, 0], + // padding: 5 , + fontSize: 50, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [121.472644, 31.231706] + }, + + { + name: "上海", + coord: [126.472644, 50.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [126.472644, 50.231706] + }, + { + + symbol: 'none', + coord: [141.472644, 50.231706] + } + ], + [{ + value: [0, 309], + name: "广东省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Guangdong}' + + '\n{l1|' + map3.num1 + '} {l2|' + map3.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map3.bi + '%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [113.280637, 23.125178] + }, + + { + name: "广东省", + coord: [130.280637, 17.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [130.280637, 17.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 17.125178] + } + ] + + + ], + animation: false + } +}; +var series4 = { + name: '重庆', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江苏', + selected: true + + }, + { + name: '上海', + selected: true + + }, + { + name: '广东', + selected: true + + }, + { + name: '重庆', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + silent: true, + symbolSize: 20, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + + [{ + value: [4, 5734], + name: "江苏省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Jiangsu}' + + '\n{l1|' + map1.num1 + '} {l2|' + map1.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map1.bi + '%} ' + + ' \n' + ].join('\n'), + position: 'end', + distance: 20, + rich: { + block: { + height: 50, + }, + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 85, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 85, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [118.767413, 32.041544] + }, + + { + name: "江苏省", + coord: [95.984722, 49.756539] + } + + ], + [ + + { + + symbol: 'none', + coord: [95.984722, 49.756539] + }, + { + + symbol: 'none', + coord: [77.984722, 49.756539] + } + ], + [{ + value: [0, 309], + name: "上海", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Shanghai}' + + '\n{l1|' + map2.num1 + '} {l2|' + map2.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map2.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [0, 10, -130, 280], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [59, 0, 18, 0], + // padding: 5 , + fontSize: 50, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [121.472644, 31.231706] + }, + + { + name: "上海", + coord: [126.472644, 50.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [126.472644, 50.231706] + }, + { + + symbol: 'none', + coord: [141.472644, 50.231706] + } + ], + [{ + value: [0, 309], + name: "广东省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Guangdong}' + + '\n{l1|' + map3.num1 + '} {l2|' + map3.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map3.bi + '%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [113.280637, 23.125178] + }, + + { + name: "广东省", + coord: [130.280637, 17.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [130.280637, 17.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 17.125178] + } + ], + [{ + value: [0, 15], + name: "重庆", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Chongqing}\n{l1|' + map4.num1 + '} {l2|' + map4.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map4.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [106.545042, 29.656263] + }, + + { + name: "重庆", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ] + ], + animation: false + } +}; +var series5 = { + name: '宁夏', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江苏', + selected: true + + }, + { + name: '上海', + selected: true + + }, + { + name: '广东', + selected: true + + }, + { + name: '重庆', + selected: true + + }, + { + name: '宁夏', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + silent: true, + symbolSize: 20, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + + [{ + value: [4, 5734], + name: "江苏省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Jiangsu}' + + '\n{l1|' + map1.num1 + '} {l2|' + map1.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map1.bi + '%} ' + + ' \n' + ].join('\n'), + position: 'end', + distance: 20, + rich: { + block: { + height: 50, + }, + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 85, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 85, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [118.767413, 32.041544] + }, + + { + name: "江苏省", + coord: [95.984722, 49.756539] + } + + ], + [ + + { + + symbol: 'none', + coord: [95.984722, 49.756539] + }, + { + + symbol: 'none', + coord: [77.984722, 49.756539] + } + ], + [{ + value: [0, 309], + name: "上海", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Shanghai}' + + '\n{l1|' + map2.num1 + '} {l2|' + map2.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map2.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [0, 10, -130, 280], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [59, 0, 18, 0], + // padding: 5 , + fontSize: 50, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [121.472644, 31.231706] + }, + + { + name: "上海", + coord: [126.472644, 50.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [126.472644, 50.231706] + }, + { + + symbol: 'none', + coord: [141.472644, 50.231706] + } + ], + [{ + value: [0, 309], + name: "广东省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Guangdong}' + + '\n{l1|' + map3.num1 + '} {l2|' + map3.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map3.bi + '%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [113.280637, 23.125178] + }, + + { + name: "广东省", + coord: [130.280637, 17.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [130.280637, 17.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 17.125178] + } + ], + [{ + value: [0, 15], + name: "重庆", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Chongqing}\n{l1|' + map4.num1 + '} {l2|' + map4.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map4.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [106.545042, 29.656263] + }, + + { + name: "重庆", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ], + //@ + [{ + value: [0, 200], + name: "宁夏", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Ningxia}\n{l1|' + map5.num1 + '} {l2|' + map5.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map5.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [106.545042, 37.656263] + }, + + { + name: "宁夏", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + ], + animation: false + } +}; +var series6 = { + name: '福建', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江苏', + selected: true + + }, + { + name: '上海', + selected: true + + }, + { + name: '广东', + selected: true + + }, + { + name: '重庆', + selected: true + + }, + { + name: '宁夏', + selected: true + + }, + { + name: '福建', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + silent: true, + symbolSize: 20, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + + [{ + value: [4, 5734], + name: "江苏省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Jiangsu}' + + '\n{l1|' + map1.num1 + '} {l2|' + map1.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map1.bi + '%} ' + + ' \n' + ].join('\n'), + position: 'end', + distance: 20, + rich: { + block: { + height: 50, + }, + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 85, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 85, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [118.767413, 32.041544] + }, + + { + name: "江苏省", + coord: [95.984722, 49.756539] + } + + ], + [ + + { + + symbol: 'none', + coord: [95.984722, 49.756539] + }, + { + + symbol: 'none', + coord: [77.984722, 49.756539] + } + ], + [{ + value: [0, 309], + name: "上海", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Shanghai}' + + '\n{l1|' + map2.num1 + '} {l2|' + map2.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map2.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [0, 10, -130, 280], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [59, 0, 18, 0], + // padding: 5 , + fontSize: 50, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [121.472644, 31.231706] + }, + + { + name: "上海", + coord: [126.472644, 50.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [126.472644, 50.231706] + }, + { + + symbol: 'none', + coord: [141.472644, 50.231706] + } + ], + [{ + value: [0, 309], + name: "广东省", + label: { + + normal: { + mark: 'mark1', + formatter: [ + '{Province|Guangdong}' + + '\n{l1|' + map3.num1 + '} {l2|' + map3.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map3.bi + '%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [113.280637, 23.125178] + }, + + { + name: "广东省", + coord: [130.280637, 17.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [130.280637, 17.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 17.125178] + } + ], + [{ + value: [0, 15], + name: "重庆", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Chongqing}\n{l1|' + map4.num1 + '} {l2|' + map4.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map4.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [106.545042, 29.656263] + }, + + { + name: "重庆", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ], + //@ + [{ + value: [0, 200], + name: "宁夏", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Ningxia}\n{l1|' + map5.num1 + '} {l2|' + map5.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map5.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [106.545042, 37.656263] + }, + + { + name: "宁夏", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + //福建 + [{ + value: [0, 240], + name: "福建", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Fujian}\n{l1|' + map6.num1 + '} {l2|' + map6.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map6.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [117.472644, 26.231706] + }, + + { + name: "福建", + coord: [140.472644, 33.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [140.472644, 33.231706] + }, + { + + symbol: 'none', + coord: [155.472644, 33.231706] + } + ], + ], + animation: false + } +}; +var series7 = { + name: '河南省', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '河南', + selected: true + + }], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "河南省", + padding: [8, 0, 30, 10], + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Henan}\n{l1|' + map7.num1 + '} {l2|' + map7.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [114.767413, 34.041544] + }, + + { + name: "河南", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ] + + + ], + animation: false + } +}; +var series8 = { + name: '四川', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '河南', + selected: true + + }, + { + name: '四川', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "河南省", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Henan}\n{l1|' + map7.num1 + '} {l2|' + map7.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [114.767413, 34.041544] + }, + + { + name: "河南", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "四川", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Sichuan}\n{l1|' + map8.num1 + '} {l2|' + map8.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map8.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [104.065735, 30.659462] + }, + + { + name: "四川", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ] + + + ], + animation: false + } +}; +var series9 = { + name: '北京', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '河南', + selected: true + + }, + { + name: '四川', + selected: true + + }, + { + name: '北京', + selected: true + + } + ], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "河南省", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Henan}\n{l1|' + map7.num1 + '} {l2|' + map7.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [114.767413, 34.041544] + }, + + { + name: "河南", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "四川", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Sichuan}\n{l1|' + map8.num1 + '} {l2|' + map8.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map8.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [104.065735, 30.659462] + }, + + { + name: "四川", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 240], + name: "北京", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Beijing}\n{l1|' + map9.num1 + '} {l2|' + map9.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map9.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [116.405285, 39.904989] + }, + + { + name: "北京", + coord: [135.472644, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + + symbol: 'none', + coord: [148.472644, 49.304255] + } + ] + ], + animation: false + } +}; +var series10 = { + name: '北京', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '河南', + selected: true + + }, + { + name: '四川', + selected: true + + }, + { + name: '北京', + selected: true + + }, + { + name: '湖北', + selected: true + + } + ], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "河南省", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Henan}\n{l1|' + map7.num1 + '} {l2|' + map7.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [114.767413, 34.041544] + }, + + { + name: "河南", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "四川", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Sichaun}\n{l1|' + map8.num1 + '} {l2|' + map8.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map8.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [104.065735, 30.659462] + }, + + { + name: "四川", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 240], + name: "北京", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Beijing}\n{l1|' + map9.num1 + '} {l2|' + map9.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map9.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [116.405285, 39.904989] + }, + + { + name: "北京", + coord: [135.472644, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + + symbol: 'none', + coord: [148.472644, 49.304255] + } + ], + [{ + value: [0, 309], + name: "湖北", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Hubei}' + '\n{l1|' + map10.num1 + '} {l2|' + map10.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map10.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [114.298572, 30.584355] + }, + + { + name: "湖北", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ] + ], + animation: false + } +}; +var series11 = { + name: '北京', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '河南', + selected: true + + }, + { + name: '四川', + selected: true + + }, + { + name: '北京', + selected: true + + }, + { + name: '湖北', + selected: true + + }, + { + name: '山东', + selected: true + + } + ], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "河南省", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Henan}\n{l1|' + map7.num1 + '} {l2|' + map7.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [114.767413, 34.041544] + }, + + { + name: "河南", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "四川", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Sichuan}\n{l1|' + map8.num1 + '} {l2|' + map8.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map8.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [104.065735, 30.659462] + }, + + { + name: "四川", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 240], + name: "北京", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Beijing}\n{l1|' + map9.num1 + '} {l2|' + map9.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map9.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [116.405285, 39.904989] + }, + + { + name: "北京", + coord: [135.472644, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + + symbol: 'none', + coord: [148.472644, 49.304255] + } + ], + [{ + value: [0, 309], + name: "湖北", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Hubei}' + '\n{l1|' + map10.num1 + '} {l2|' + map10.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map10.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [114.298572, 30.584355] + }, + + { + name: "湖北", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + [{ + value: [0, 240], + name: "山东", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shandong}\n{l1|' + map11.num1 + '} {l2|' + map11.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map11.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [117.000923, 36.675807] + }, + + { + name: "山东", + coord: [140.472644, 33.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [140.472644, 33.231706] + }, + { + + symbol: 'none', + coord: [155.472644, 33.231706] + } + ] + + ], + animation: false + } +}; +var series12 = { + name: '北京', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '河南', + selected: true + }, + { + name: '四川', + selected: true + }, + { + name: '北京', + selected: true + }, + { + name: '湖北', + selected: true + }, + { + name: '山东', + selected: true + }, + { + name: '广西', + selected: true + } + ], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "河南省", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Henan}\n{l1|' + map7.num1 + '} {l2|' + map7.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [114.767413, 34.041544] + }, + + { + name: "河南", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "四川", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Sichuan}\n{l1|' + map8.num1 + '} {l2|' + map8.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map8.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [104.065735, 30.659462] + }, + + { + name: "四川", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 240], + name: "北京", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Beijing}\n{l1|' + map9.num1 + '} {l2|' + map9.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map9.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [116.405285, 39.904989] + }, + + { + name: "北京", + coord: [135.472644, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + + symbol: 'none', + coord: [148.472644, 49.304255] + } + ], + [{ + value: [0, 309], + name: "湖北", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Hubei}' + '\n{l1|' + map10.num1 + '} {l2|' + map10.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map10.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [114.298572, 30.584355] + }, + + { + name: "湖北", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + [{ + value: [0, 240], + name: "山东", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shandong}\n{l1|' + map11.num1 + '} {l2|' + map11.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map11.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [117.000923, 36.675807] + }, + + { + name: "山东", + coord: [140.472644, 33.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [140.472644, 33.231706] + }, + { + + symbol: 'none', + coord: [155.472644, 33.231706] + } + ], + [{ + value: [0, 15], + name: "广西", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Guangxi}\n{l1|' + map12.num1 + '} {l2|' + map12.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map12.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [111.320004, 24.82402] + }, + + { + name: "广西", + coord: [102.71434, 15.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [102.71434, 15.304255] + }, + { + + symbol: 'none', + coord: [87.71434, 15.304255] + } + ] + + ], + animation: false + } +}; +var series13 = { + name: '内蒙古', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '内蒙古', + selected: true + + }], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "内蒙古", + padding: [8, 0, 30, 10], + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Inner Mongolia}\n{l1|' + map13.num1 + '} {l2|' + map13.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [111.670801, 40.818311] + }, + + { + name: "内蒙古", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ] + + + ], + animation: false + } +}; +var series14 = { + name: '西藏', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '内蒙古', + selected: true + + }, + { + name: '西藏', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "内蒙古", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Inner Mongolia}\n{l1|' + map13.num1 + '} {l2|' + map13.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [111.670801, 40.818311] + }, + + { + name: "内蒙古", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "西藏", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Xizang}\n{l1|' + map15.num1 + '} {l2|' + map15.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map15.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [91.132212, 29.660361] + }, + + { + name: "西藏", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ] + + + ], + animation: false + } +}; +var series15 = { + name: '安徽', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '内蒙古', + selected: true + }, + { + name: '西藏', + selected: true + }, + { + name: '安徽', + selected: true + } + ], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "内蒙古", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Inner Mongolia}\n{l1|' + map13.num1 + '} {l2|' + map13.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [111.670801, 40.818311] + }, + + { + name: "内蒙古", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "西藏", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Xizang}\n{l1|' + map15.num1 + '} {l2|' + map15.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map15.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [91.132212, 29.660361] + }, + + { + name: "西藏", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 309], + name: "安徽", + label: { + + normal: { + mark: 'mark4', + formatter: [ + '{Province|Anhui}' + + '\n{l1|' + map14.num1 + '} {l2|' + map14.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|0%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [117.283042, 31.86119] + }, + + { + name: "安徽省", + coord: [135.280637, 35.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 35.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 35.125178] + } + ] + ], + animation: false + } +}; +var series16 = { + name: '甘肃', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '内蒙古', + selected: true + }, + { + name: '西藏', + selected: true + }, + { + name: '安徽', + selected: true + }, + { + name: '甘肃', + selected: true + + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + silent: true, + symbolSize: 20, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "内蒙古", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Inner Mongolia}\n{l1|' + map13.num1 + '} {l2|' + map13.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [111.670801, 40.818311] + }, + + { + name: "内蒙古", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "西藏", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Xizang}\n{l1|' + map15.num1 + '} {l2|' + map15.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map15.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [91.132212, 29.660361] + }, + + { + name: "西藏", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 309], + name: "安徽", + label: { + + normal: { + mark: 'mark4', + formatter: [ + '{Province|Anhui}' + + '\n{l1|' + map14.num1 + '} {l2|' + map14.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|0%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [117.283042, 31.86119] + }, + + { + name: "安徽省", + coord: [135.280637, 35.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 35.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 35.125178] + } + ], + [{ + value: [0, 15], + name: "甘肃", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Gansu}\n{l1|' + map16.num1 + '} {l2|' + map16.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map4.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [103.823557, 36.058039] + }, + + { + name: "甘肃", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ] + ], + animation: false + } +}; +var series17 = { + name: '黑龙江', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '内蒙古', + selected: true + }, + { + name: '西藏', + selected: true + }, + { + name: '安徽', + selected: true + }, + { + name: '甘肃', + selected: true + }, + { + name: '黑龙江', + selected: true + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + silent: true, + symbolSize: 20, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "内蒙古", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Inner Mongolia}\n{l1|' + map13.num1 + '} {l2|' + map13.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [111.670801, 40.818311] + }, + + { + name: "内蒙古", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "西藏", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Xizang}\n{l1|' + map15.num1 + '} {l2|' + map15.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map15.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [91.132212, 29.660361] + }, + + { + name: "西藏", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 309], + name: "安徽", + label: { + + normal: { + mark: 'mark4', + formatter: [ + '{Province|Anhui}' + + '\n{l1|' + map14.num1 + '} {l2|' + map14.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|0%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [117.283042, 31.86119] + }, + + { + name: "安徽省", + coord: [135.280637, 35.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 35.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 35.125178] + } + ], + [{ + value: [0, 15], + name: "甘肃", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Gansu}\n{l1|' + map16.num1 + '} {l2|' + map16.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map4.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [103.823557, 36.058039] + }, + + { + name: "甘肃", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ], + [{ + value: [0, 309], + name: "黑龙江", + label: { + + normal: { + mark: 'mark5', + formatter: [ + '\n{Province| Heilongjiang}' + + '\n {l1|' + map17.num1 + '} {l2|' + map17.num2 + '} ' + + '\n {l3|early cancer} {l4|serumtest} ' + + '\n {l5|' + map17.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [0, 10, -130, 280], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [59, 0, 18, 0], + // padding: 5 , + fontSize: 50, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [126.642464, 45.756967] + }, + + { + name: "黑龙江", + coord: [130.642464, 55.756967] + } + + ], + [ + + { + + symbol: 'none', + coord: [130.642464, 55.756967] + }, + { + + symbol: 'none', + coord: [145.472644, 55.756967] + } + ] + ], + animation: false + } +}; +var series18 = { + name: '浙江', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '内蒙古', + selected: true + }, + { + name: '西藏', + selected: true + }, + { + name: '安徽', + selected: true + }, + { + name: '甘肃', + selected: true + }, + { + name: '黑龙江', + selected: true + }, + { + name: '浙江', + selected: true + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + silent: true, + symbolSize: 20, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [4, 5734], + name: "内蒙古", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Inner Mongolia}\n{l1|' + map13.num1 + '} {l2|' + map13.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map7.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [111.670801, 40.818311] + }, + + { + name: "内蒙古", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 200], + name: "西藏", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Xizang}\n{l1|' + map15.num1 + '} {l2|' + map15.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map15.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [91.132212, 29.660361] + }, + + { + name: "西藏", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ], + [{ + value: [0, 309], + name: "安徽", + label: { + + normal: { + mark: 'mark4', + formatter: [ + '{Province|Anhui}' + + '\n{l1|' + map14.num1 + '} {l2|' + map14.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|0%} ' + + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [117.283042, 31.86119] + }, + + { + name: "安徽省", + coord: [135.280637, 35.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 35.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 35.125178] + } + ], + [{ + value: [0, 15], + name: "甘肃", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Gansu}\n{l1|' + map16.num1 + '} {l2|' + map16.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map4.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [103.823557, 36.058039] + }, + + { + name: "甘肃", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ], + [{ + value: [0, 309], + name: "黑龙江", + label: { + + normal: { + mark: 'mark5', + formatter: [ + '\n{Province| Heilongjiang}' + + '\n {l1|' + map17.num1 + '} {l2|' + map17.num2 + '} ' + + '\n {l3|early cancer} {l4|serumtest} ' + + '\n {l5|' + map17.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [0, 10, -130, 280], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [59, 0, 18, 0], + // padding: 5 , + fontSize: 50, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [126.642464, 45.756967] + }, + + { + name: "黑龙江", + coord: [130.642464, 55.756967] + } + + ], + [ + + { + + symbol: 'none', + coord: [130.642464, 55.756967] + }, + { + + symbol: 'none', + coord: [145.472644, 55.756967] + } + ], + [{ + value: [0, 309], + name: "浙江", + label: { + + normal: { + mark: 'mark6', + formatter: [ + '{Province|Zhejiang}' + + '\n{l1|' + map18.num1 + '} {l2|' + map18.num2 + '} ' + + '\n{l3|early cancer} {l4|serumtest} ' + + '\n{l5|' + map18.bi + '%} ' + + ' \n' + ].join('\n'), + padding: [-130, 10, -130, 700], + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [120.153576, 30.287459] + }, + + { + name: "浙江", + coord: [130.642464, 18.756967] + } + + ], + [ + + { + + symbol: 'none', + coord: [130.642464, 18.756967] + }, + { + + symbol: 'none', + coord: [145.472644, 18.756967] + } + ] + ], + animation: false + } +}; +var series19 = { + name: '江西', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江西', + selected: true + + }], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [0, 309], + name: "江西", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Jiangxi}' + '\n{l1|' + map19.num1 + '} {l2|' + map19.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map19.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [115.892151, 28.676493] + }, + + { + name: "江西", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + + + ], + animation: false + } +}; +var series20 = { + name: '江西', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江西', + selected: true + + }, { + name: '陕西', + selected: true + + }], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [0, 309], + name: "江西", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Jiangxi}' + '\n{l1|' + map19.num1 + '} {l2|' + map19.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map19.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [115.892151, 28.676493] + }, + + { + name: "江西", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + [{ + value: [4, 5734], + name: "陕西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shannxi}\n{l1|' + map20.num1 + '} {l2|' + map20.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map20.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + + coord: [108.948024, 34.263161] + }, + + { + name: "陕西", + coord: [80.71434, 49.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + + + ], + animation: false + } +}; +var series21 = { + name: '河北', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江西', + selected: true + + }, { + name: '陕西', + selected: true + + }, { + name: '河北', + selected: true + + }], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [0, 309], + name: "江西", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Jiangxi}' + '\n{l1|' + map19.num1 + '} {l2|' + map19.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map19.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [115.892151, 28.676493] + }, + + { + name: "江西", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + [{ + value: [4, 5734], + name: "陕西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shannxi}\n{l1|' + map20.num1 + '} {l2|' + map20.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map20.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [108.948024, 34.263161] + }, + { + name: "陕西", + coord: [80.71434, 49.304255] + } + ], + [ + { + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 240], + name: "河北", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Hebei}\n{l1|' + map21.num1 + '} {l2|' + map21.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map21.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [114.502461, 38.045474] + }, + { + name: "河北", + coord: [135.472644, 49.304255] + } + + ], + [ + { + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + symbol: 'none', + coord: [148.472644, 49.304255] + } + ] + ], + animation: false + } +}; +var series22 = { + name: '山西', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江西', + selected: true + + }, { + name: '陕西', + selected: true + + }, { + name: '河北', + selected: true + + }, { + name: '山西', + selected: true + + }], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [0, 309], + name: "江西", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Jiangxi}' + '\n{l1|' + map19.num1 + '} {l2|' + map19.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map19.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [115.892151, 28.676493] + }, + + { + name: "江西", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + [{ + value: [4, 5734], + name: "陕西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shannxi}\n{l1|' + map20.num1 + '} {l2|' + map20.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map20.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [108.948024, 34.263161] + }, + { + name: "陕西", + coord: [80.71434, 49.304255] + } + ], + [ + { + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 240], + name: "河北", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Hebei}\n{l1|' + map21.num1 + '} {l2|' + map21.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map21.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [114.502461, 38.045474] + }, + { + name: "河北", + coord: [135.472644, 49.304255] + } + + ], + [ + { + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + symbol: 'none', + coord: [148.472644, 49.304255] + } + ], + [{ + value: [0, 240], + name: "山西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shanxi}\n{l1|' + map22.num1 + '} {l2|' + map22.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map22.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [112.549248, 36.666014] + }, + + { + name: "山西", + coord: [140.472644, 33.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [140.472644, 33.231706] + }, + { + + symbol: 'none', + coord: [155.472644, 33.231706] + } + ] + + ], + animation: false + } +}; +var series23 = { + name: '云南', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江西', + selected: true + + }, { + name: '陕西', + selected: true + + }, { + name: '河北', + selected: true + + }, { + name: '山西', + selected: true + + }, { + name: '云南', + selected: true + + }], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [0, 309], + name: "江西", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Jiangxi}' + '\n{l1|' + map19.num1 + '} {l2|' + map19.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map19.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [115.892151, 28.676493] + }, + + { + name: "江西", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + [{ + value: [4, 5734], + name: "陕西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Sahnnxi}\n{l1|' + map20.num1 + '} {l2|' + map20.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map20.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [108.948024, 34.263161] + }, + { + name: "陕西", + coord: [80.71434, 49.304255] + } + ], + [{ + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 240], + name: "河北", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Hebei}\n{l1|' + map21.num1 + '} {l2|' + map21.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map21.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [114.502461, 38.045474] + }, + { + name: "河北", + coord: [135.472644, 49.304255] + } + + ], + [{ + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + symbol: 'none', + coord: [148.472644, 49.304255] + } + ], + [{ + value: [0, 240], + name: "山西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shanxi}\n{l1|' + map22.num1 + '} {l2|' + map22.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map22.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [112.549248, 36.666014] + }, + + { + name: "山西", + coord: [140.472644, 33.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [140.472644, 33.231706] + }, + { + + symbol: 'none', + coord: [155.472644, 33.231706] + } + ], + [{ + value: [0, 15], + name: "云南", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Yunnan}\n{l1|' + map23.num1 + '} {l2|' + map23.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map23.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [102.712251, 25.040609] + }, + + { + name: "云南", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ] + + ], + animation: false + } +}; +var series24 = { + name: '青海', + type: 'map', + zoom: 0.7, + top: '15%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [{ + name: '江西', + selected: true + + }, { + name: '陕西', + selected: true + + }, { + name: '河北', + selected: true + + }, { + name: '山西', + selected: true + + }, { + name: '云南', + selected: true + + }, + { + name: '青海', + selected: true + } + ], + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [{ + value: [0, 309], + name: "江西", + label: { + + normal: { + mark: 'mark3', + formatter: [ + '{Province|Jiangxi}' + '\n{l1|' + map19.num1 + '} {l2|' + map19.num2 + '}' + '\n{l3|early cancer} {l4|serumtest}' + '\n{l5|' + map19.bi + '%}' + ' \n' + ].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [115.892151, 28.676493] + }, + + { + name: "江西", + coord: [135.280637, 19.125178] + } + + ], + [ + + { + + symbol: 'none', + coord: [135.280637, 19.125178] + }, + { + + symbol: 'none', + coord: [150.280637, 19.125178] + } + ], + [{ + value: [4, 5734], + name: "陕西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shannxi}\n{l1|' + map20.num1 + '} {l2|' + map20.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map20.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [108.948024, 34.263161] + }, + { + name: "陕西", + coord: [80.71434, 49.304255] + } + ], + [{ + symbol: 'none', + coord: [80.71434, 49.304255] + }, + { + symbol: 'none', + coord: [65.71434, 49.304255] + } + ], + [{ + value: [0, 240], + name: "河北", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Hebei}\n{l1|' + map21.num1 + '} {l2|' + map21.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map21.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [114.502461, 38.045474] + }, + { + name: "河北", + coord: [135.472644, 49.304255] + } + + ], + [{ + symbol: 'none', + coord: [135.472644, 49.304255] + }, + { + symbol: 'none', + coord: [148.472644, 49.304255] + } + ], + [{ + value: [0, 240], + name: "山西", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Shanxi}\n{l1|' + map22.num1 + '} {l2|' + map22.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map22.bi + '%}\n' + ].join('\n'), + padding: [0, 10, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [112.549248, 36.666014] + }, + + { + name: "山西", + coord: [140.472644, 33.231706] + } + + ], + [ + + { + + symbol: 'none', + coord: [140.472644, 33.231706] + }, + { + + symbol: 'none', + coord: [155.472644, 33.231706] + } + ], + [{ + value: [0, 15], + name: "云南", + label: { + + normal: { + mark: 'mark2', + formatter: [ + '{Province|Yunnan}\n{l1|' + map23.num1 + '} {l2|' + map23.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map23.bi + '%}\n' + ].join('\n'), + padding: [-130, 0, 0, -130], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [102.712251, 25.040609] + }, + + { + name: "云南", + coord: [97.71434, 19.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [97.71434, 19.304255] + }, + { + + symbol: 'none', + coord: [82.71434, 19.304255] + } + ], + [{ + value: [0, 200], + name: "青海", + label: { + normal: { + mark: 'mark2', + formatter: [ + '{Province|Qinghai}\n{l1|' + map24.num1 + '} {l2|' + map24.num2 + '}\n{l3|early cancer} {l4|serumtest}\n{l5|' + map24.bi + '%}\n' + ].join('\n'), + padding: [0, 0, 0, 0], + position: 'end', + distance: 20, + rich: { + + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 75, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 75, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, + height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [101.778916, 36.623178] + }, + + { + name: "青海", + coord: [80.71434, 33.304255] + } + + ], + [ + + { + + symbol: 'none', + coord: [80.71434, 33.304255] + }, + { + + symbol: 'none', + coord: [65.71434, 33.304255] + } + ] + ], + animation: false + } +}; + +var sequence = {}; +sequence['江苏'] = series1; +sequence['上海'] = series2; +sequence['广东'] = series3; +sequence['重庆'] = series4; +sequence['宁夏'] = series5; +sequence['福建'] = series6; +sequence['河南'] = series7; +sequence['四川'] = series8; +sequence['北京'] = series9; +sequence['湖北'] = series10; +sequence['山东'] = series11; +sequence['广西'] = series12; +sequence['内蒙古'] = series13; +sequence['西藏'] = series14; +sequence['安徽'] = series15; +sequence['甘肃'] = series16; +sequence['黑龙江'] = series17; +sequence['浙江'] = series18; +sequence['江西'] = series19; +sequence['陕西'] = series20; +sequence['河北'] = series21; +sequence['山西'] = series22; +sequence['云南'] = series23; +sequence['青海'] = series24; + + +var pointData = [ + { + province: '江苏', + province_en:'Jiangsu' + }, + { + province: '上海', + province_en:'Shanghai' + }, + { + province: '广东', + province_en:'Guangdong' + }, + { + province: '重庆', + province_en:'Chongqing' + }, + { + province: '宁夏', + province_en:'Ningxia' + }, + { + province: '福建', + province_en:'Fujian' + }, + { + province: '河南', + province_en:'Henan' + }, + { + province: '四川', + province_en:'Sichuan' + }, + { + province: '北京', + province_en:'Beijing' + }, + { + province: '湖北', + province_en:'Hubei' + }, + { + province: '山东', + province_en:'Shandong' + }, + { + province: '广西', + province_en:'Guangxi' + }, + { + province: '内蒙古', + province_en:'Inner Mongolia' + }, + { + province: '西藏', + province_en:'Xizang' + }, + { + province: '安徽', + province_en:'Anhui' + }, + { + province: '甘肃', + province_en:'Gansu' + }, + { + province: '黑龙江', + province_en:'Heilongjiang' + }, + { + province: '浙江', + province_en:'Zhejiang' + }, + { + province: '江西', + province_en:'Jiangxi' + }, + { + province: '陕西', + province_en:'Shannxi' + }, + { + province: '河北', + province_en:'Hebei' + }, + { + province: '山西', + province_en:'Shanxi' + }, + { + province: '云南', + province_en:'Yunnan' + }, + { + province: '青海', + province_en:'Qinghai' + } +]; + +var series = [series1, series2, series3, series4, series5, series6, + series7, series8, series9, series10, series11, series12, + series13, series14, series15, series16, series17, series18, + series19, series20, series21, series22, series23, series24]; + + +function handle() { + let pramAry = Array.prototype.slice.apply(arguments); + for (let i = 0, len = pramAry.length; i < len; i++) { + everyHandle(pramAry[i]) + } + +} + +function everyHandle(obj) { + let len = obj.markLine.data.length; + for (let i = 0; i < len; i++) { + if (i % 2 === 1) { + let sublen = obj.markLine.data[i].length + // obj.markLine.data[i][sublen - 1].coord-=10 + } + } +} + +handle(series1, series2, series3, series4, series5, series6, series7, series8, series9, series10, series11, series12, series13, series14, series15, series16, series17, series18, series19, series20, series21, series22, series23, series24); diff --git a/gicc/Scripts/chinaData.js b/gicc/Scripts/chinaData.js index 77e0b024c8a6908cdaa1dbc19519d6ca7d6c3b29..4fd1fee02cf602a99c59b12cd7cb57c7275f13bc 100644 --- a/gicc/Scripts/chinaData.js +++ b/gicc/Scripts/chinaData.js @@ -1,146 +1,146 @@ var map1 = { // 江苏省 - num1: 24,//早癌数, - num2: 13619,//血检数 - bi: 0.4 + num1: 0,//早癌数, + num2: 0,//血检数 + bi: 0 }; var map2 = { // 上海省 - num1: 20,//早癌数 - num2: 2474,//血检数 - bi: 0.4 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 }; var map3 = { // 广东省 - num1: 12,//早癌数 - num2: 6973,//血检数 - bi: 0.2 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 }; var map4 = { // 重庆省 num1: 0,//早癌数 - num2: 30,//血检数 + num2: 0,//血检数 bi: 0 }; var map5 = { // 宁夏 - num1: 10,//早癌数 - num2: 6654,//血检数 - bi: 0.2 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 }; var map6 = { // 福建 num1: 0,//早癌数 - num2: 356,//血检数 + num2: 0,//血检数 bi: 0 }; var map7 = { // 河南 num1: 0,//早癌数 - num2: 143,//血检数 + num2: 0,//血检数 bi: 0 }; var map8 = { // 四川 - num1: 10,//早癌数 - num2: 427,//血检数 - bi: 0.2 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 }; var map9 = { // 北京 - num1: 3,//早癌数 - num2: 48,//血检数 - bi: 0.1 + num1: 0,//早癌数 + num2: 0,//血检数 + bi: 0 }; var map10 = { //湖北 - num1: 3, - num2: 210, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map11 = { //山东 - num1: 5, - num2: 17, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map12 = { //广西 num1: 0, - num2: 141, + num2: 0, bi: 0 }; var map13 = { //内蒙古 - num1: 5, - num2: 1431, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map14 = { //安徽 - num1: 6, - num2: 273, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map15 = { //西藏 num1: 0, - num2: 1, + num2: 0, bi: 0 }; var map16 = { //甘肃 num1: 0, - num2: 21, + num2: 0, bi: 0 }; var map17 = { //黑龙江省 - num1: 1, - num2: 5, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map18 = { //浙江 - num1: 2, - num2: 259, + num1: 0, + num2: 0, bi: 0 }; var map19 = { //江西 - num1: 1, - num2: 101, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map20 = { //陕西 num1: 0, - num2: 22, + num2: 0, bi: 0 }; var map21 = { //河北 - num1: 1, - num2: 285, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map22 = { //山西 num1: 0, - num2: 2, + num2: 0, bi: 0 }; var map23 = { //云南 num1: 0, - num2: 377, + num2: 0, bi: 0 }; var map24 = { //青海 - num1: 1, - num2: 1, - bi: 0.1 + num1: 0, + num2: 0, + bi: 0 }; var map = [map1, map2, map3, map4, map5, map6, @@ -149,7 +149,7 @@ var map = [map1, map2, map3, map4, map5, map6, map19, map20, map21, map22, map23, map24]; // 使用后台返回数据填充 -$.getJSON("http://172.30.2.105:2019/data-plat/serum/statistics", function (data) { +$.getJSON("http://gicc-back-end:2019/data-plat/serum/statistics", function (data) { let serum = data.data; $.each(pointData, function (idx, item) { let n = idx % 6; diff --git a/gicc/Scripts/chinaData2-en.js b/gicc/Scripts/chinaData2-en.js new file mode 100644 index 0000000000000000000000000000000000000000..14303bc9a16676211584d3ac8c2bc655ce1a39e3 --- /dev/null +++ b/gicc/Scripts/chinaData2-en.js @@ -0,0 +1,5003 @@ +let mapp1 = { + // 江苏 + sqnum: 24, + allnum: 10 +}; +//广东 +let mapp2 = { + sqnum: 31, + allnum: 2 +}; +//湖北省 +let mapp3 = { + sqnum: 17, + allnum: 0 +}; +// 山东省 +let mapp4 = { + sqnum: 8, + allnum: 0 +}; +// 北京市 +let mapp5 = { + sqnum: 10, + allnum: 0 +}; +// 重庆市 +let mapp6 = { + sqnum: 8, + allnum: 1 +}; +// 上海市 +let mapp7 = { + sqnum: 6, + allnum: 1 +}; + +// 使用后台返回数据填充 +$.getJSON("http://gicc-back-end:2019/data-plat/screening/statistics", function (data) { + let screening = data.data; + $.each(pointData2, function (idx, item) { + var len = seriesArr[idx].data.length; + // console.log(len) + for (let i = 0; i < len; i++) { + let obj = screening.dtoList.filter(dto => dto.provinceName.includes(seriesArr[idx].markLine.data[i * 2][1].name)); + var hospApply = obj[0] ? obj[0].hospApply : 0; + var screeningTotal = obj[0] ? obj[0].provinceScreeningTotal : 0; + var provinceName = seriesArr[idx].markLine.data[i * 2][1].name_en; + var mark = seriesArr[idx].markLine.data[i * 2][0].label.normal.mark; + var str = seriesArr[idx].markLine.data[i * 2][0].label.normal.formatter; + switch (mark) { + case 'mark1': + str = [ + '{Province|'+provinceName+'}' + + '\n{block10|}{l1|'+hospApply+'} {l2|'+screeningTotal+'} ' + + '\n{block10|}{l4|apply} {l5|screening} ' + + '\n{l6|} ' + + ' \n'].join('\n'); + break; + case 'mark2': + str = [ + '{block50|}{Province|'+provinceName+'}' + + '\n{block100|}{l1|'+hospApply+'} {l2|'+screeningTotal+'}' + + '\n{block100|}{l4|apply} {l5|screening}' + + '\n{l6|}' + + ' \n'].join('\n'); + break; + case 'mark3': + str = ['{Province|'+provinceName+'}\n {l1|'+hospApply+'} {l2|'+screeningTotal+'}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'); + break; + case 'mark4': + str = ['{Province|'+provinceName+'}\n{l1|'+hospApply+'} {l2|'+screeningTotal+'} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'); + break; + case 'mark5': + str = [ + '{block100|}{Province|'+provinceName+'}' + + '\n{block200|}{l1|'+hospApply+'} {l2|'+screeningTotal+'}' + + '\n{block200|}{l4|apply} {l5|screening}' + + '\n{block10|}'].join('\n'); + break; + case 'mark6': + str = ['{Province|'+provinceName+'}\n{l1|'+hospApply+'} {l2|'+screeningTotal+'}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'); + break; + case 'mark7': + str = ['{Province|'+provinceName+'}\n {l1|'+hospApply+'} {l2|'+screeningTotal+'}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'); + break; + case 'mark8': + str = [ + '{block50|}{Province|'+provinceName+'}' + + '\n{block100|}{l1|'+hospApply+'} {l2|'+screeningTotal+'}' + + '\n{block100|}{l4|apply} {l5|screening}' + + '\n{l6|}'].join('\n'); + break; + case 'mark9': + str = ['{Province|'+provinceName+'}\n{l1|'+hospApply+'} {l2|'+screeningTotal+'} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'); + break; + default: + break; + } + seriesArr[idx].markLine.data[i * 2][0].label.normal.formatter = str; + + + + + + + + + + + + // if (mark === 'mark1') { + // str = [ + // '{Province|' + provinceName + '}' + // + '\n{block10|}{l1|' + hospApply + '} {l2|' + screeningTotal + '} ' + // + '\n{block10|}{l4|apply} {l5|screening} ' + // + '\n{l6|} ' + // + ' \n'].join('\n'); + // } else if (mark === 'mark2') { + // str = [ + // '{block100|}{Province|' + provinceName + '}' + // + '\n{block200|}{l1|' + hospApply + '} {l2|' + screeningTotal + '}' + // + '\n{block200|}{l4|apply} {l5|screening}' + // + '\n{block10|}'].join('\n'); + // } else if (mark === 'mark3') { + // str = [ + // '{block50|}{Province|' + provinceName + '}' + // + '\n{block100|}{l1|' + hospApply + '} {l2|' + screeningTotal + '}' + // + '\n{block100|}{l4|apply} {l5|screening}' + // + '\n{l6|}' + // + ' \n'].join('\n'); + // } else if (mark === 'mark4') { + // str = ['{Province|' + provinceName + '}\n{l1|' + hospApply + '} {l2|' + screeningTotal + '}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'); + // } else if (mark === 'mark5') { + // str = ['{Province|' + provinceName + '}\n {l1|' + hospApply + '} {l2|' + screeningTotal + '}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'); + // } else if (mark === 'mark6') { + // str = [ + // '{block50|}{Province|' + provinceName + '}' + // + '\n{block100|}{l1|' + hospApply + '} {l2|' + screeningTotal + '}' + // + '\n{block100|}{l4|apply} {l5|screening}' + // + '\n{l6|}'].join('\n'); + // } else if (mark === 'mark7') { + // str = ['{Province|' + provinceName + '}\n{l1|' + hospApply + '} {l2|' + screeningTotal + '} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'); + // } else if (mark === 'mark8') { + // str = ['{block100|}{Province|' + provinceName + '}\n{block200|}{l1|' + hospApply + '} {l2|' + screeningTotal + '}\n{block200|}{l4|apply} {l5|screening}\n{l6|}'].join('\n'); + // } else { + // str = seriesArr[idx].markLine.data[i * 2][0].label.normal.formatter; + // } + // seriesArr[idx].markLine.data[i * 2][0].label.normal.formatter = str; + } + }); +}); + + +var series11 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '江苏', + selected: true + + }, + { + name: '广东', + selected: true + + }, + { + name: '湖北', + selected: true + + }, + { + name: '山东', + selected: true + + } + + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [17, 10], + name: "江苏省", + name_en:'Jiangsu', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark1', + formatter: [ + '{Province|Jiangsu}' + + '\n{block10|}{l1|0} {l2|0} ' + + '\n{block10|}{l4|apply} {l5|screening} ' + + '\n{l6|} ' + + ' \n'].join('\n'), + // '{Province|江苏}\n{l1|17} {l2|11}\n{l4|apply} {l5|screening}\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block10: {padding: [0, 0, 0, 0],}, + l6: { + align: 'left', + + color: '#fff', + padding: [52, 0, 20, 0], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + + } + } + }, + coord: [118.767413, 32.041544] + }, + + { + name: "江苏省", + name_en:'Jinagsu', + coord: [135.767413, 36.041544] + } + + ], [ + + { + + symbol: 'none', + coord: [135.767413, 36.041544] + }, + { + + symbol: 'none', + coord: [150.767413, 36.041544] + } + ], + //------------------------------------------- + [ + { + value: [13, 2], + name: "广东省", + name_en:'Guangdong', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark1', + formatter: [ + '{Province|Guangdong}' + + '\n{block10|}{l1|0} {l2|0} ' + + '\n{block10|}{l4|apply} {l5|screening} ' + + '\n{l6|} ' + + ' \n'].join('\n'), + //'{Province|广东}\n{l1|11} {l2|1}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + l6: { + align: 'left', + + color: '#fff', + padding: [57, 0, 23, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [113.280637, 23.125178] + }, + + { + name: "广东省", + name_en:'Guangdong', + coord: [130.280637, 17.125178] + } + + ], [ + + { + + symbol: 'none', + coord: [130.280637, 17.125178] + }, + { + + symbol: 'none', + coord: [145.280637, 17.125178] + } + ], + + //------------------------------------------- + [ + { + value: [11, 0], + name: "湖北省", + name_en:'Hubei', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark1', + formatter: [ + '{Province|Hubei}' + + '\n{block10|}{l1|0} {l2|0} ' + + '\n{block10|}{l4|apply} {l5|screening} ' + + '\n{l6|} ' + + ' \n'].join('\n'), + + //'{Province|湖北}\n{l1|11} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 18], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block10: {padding: [0, 0, 0, 18],}, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 28, 0], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + + } + } + }, + coord: [114.298572, 30.584355] + }, + + { + name: "湖北省", + name_en:'Hubei', + coord: [98.773556, 20.682906] + } + + ], [ + + { + + symbol: 'none', + coord: [98.773556, 20.682906] + }, + { + + symbol: 'none', + coord: [83.62199, 20.682906] + } + ], + + //------------------------------------------- + [ + { + value: [8, 0], + name: "山东省", + name_en:'Shandong', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark1', + formatter: [ + '{Province|Shandong}' + + '\n{block10|}{l1|0} {l2|0} ' + + '\n{block10|}{l4|apply} {l5|screening} ' + + '\n{l6|} ' + + ' \n'].join('\n'), + +// '{Province|山东}\n{l1|8} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 18], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block10: {padding: [0, 0, 0, 18],}, + l6: { + align: 'left', + + color: '#fff', + padding: [49, 0, 18, 0], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + + } + } + }, + coord: [117.000923, 36.675807] + }, + + { + name: "山东省", + name_en:'Shandong', + coord: [101.158659, 50.249382] + } + + ], [ + + { + + symbol: 'none', + coord: [101.158659, 50.249382] + }, + { + + symbol: 'none', + coord: [86.158659, 50.249382] + } + ] + + + ], + animation: false + } +}; +var series21 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '北京', + selected: true + + }, + { + name: '上海', + selected: true + + }, + { + name: '重庆', + selected: true + + }, + { + name: '新疆', + selected: true + + }, + + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [7, 0], + name: "北京市", + name_en:'Beijing', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark5', + formatter: [ + '{block100|}{Province|Beijing}' + + '\n{block200|}{l1|0} {l2|0}' + + '\n{block200|}{l4|apply} {l5|screening}' + + '\n{block10|}'].join('\n'), + +// '{Province|北京}\n {l1|6} {l2|0}\n {l4|apply} {l5|screening}\n'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 50, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block100: {padding: [0, 80, 0, 0],}, + block200: {padding: [0, 110, 0, 0],}, + block10: {padding: [-5, 0, 0, 0],}, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [116.405285, 39.904989] + }, + + { + name: "北京市", + name_en:'Beijing', + coord: [120.854377, 45.965333] + } + + ], [ + + { + + symbol: 'none', + coord: [120.854377, 45.965333] + }, + { + + symbol: 'none', + coord: [136.854377, 45.965333] + } + ], + //------------------------------------------- + [ + { + value: [5, 1], + name: "上海市", + name_en:'Shanghai', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark5', + formatter: [ + '{block100|}{Province|Shanghai}' + + '\n{block200|}{l1|0} {l2|0}' + + '\n{block200|}{l4|apply} {l5|screening}' + + '\n{block10|}'].join('\n'), + +// '{Province|上海}\n{l1|5} {l2|1}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 50, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block100: {padding: [0, 0, 0, 0],}, + block200: {padding: [0, 0, 0, 0],}, + block10: {padding: [123, 0, 0, 0],}, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, lineHeight: 16, + + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + }, + + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderRadius: 15, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [55, 0, 8, 0], + // padding: 5 , + fontSize: 50, height: 66, + fontFamily: 'myFirstFont', + }, + } + } + }, + coord: [121.472644, 31.231706] + }, + + { + name: "上海市", + name_en:'Shanghai', + coord: [136.472644, 31.231706] + } + + ], [ + + { + + symbol: 'none', + coord: [136.472644, 31.231706] + }, + { + + symbol: 'none', + coord: [151.472644, 31.231706] + } + ], + + //------------------------------------------- + [ + { + value: [6, 1], + name: "重庆市", + name_en:'Chongqing', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark2', + formatter: [ + '{block50|}{Province|Chongqing}' + + '\n{block100|}{l1|0} {l2|0}' + + '\n{block100|}{l4|apply} {l5|screening}' + + '\n{l6|}' + + ' \n'].join('\n'), +// '{Province|重庆}\n{l1|5} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block50: {padding: [0, 0, 0, 320],}, + block100: {padding: [0, 0, 0, 400],}, + l6: { + align: 'left', + + color: '#fff', + padding: [61, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [106.504962, 29.533155] + }, + + { + name: "重庆市", + name_en:'Chongqing', + coord: [86.596129, 22.73058] + } + + ], [ + + { + + symbol: 'none', + coord: [86.596129, 22.73058] + }, + { + + symbol: 'none', + coord: [71.596129, 22.73058] + } + ], + + //------------------------------------------- + [ + { + value: [4, 0], + name: "新疆", + name_en:'Xinjiang', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark2', + formatter: [ + '{block50|}{Province|Xinjiang}' + + '\n{block100|}{l1|0} {l2|0}' + + '\n{block100|}{l4|apply} {l5|screening}' + + '\n{l6|}' + + ' \n'].join('\n'), + +// '{Province|新疆}\n{l1|4} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block50: {padding: [0, 0, 0, 320],}, + block100: {padding: [0, 0, 0, 400],}, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [87.617733, 43.792818] + }, + + { + name: "新疆", + name_en:'Xinjiang', + coord: [76.285513, 47.390485] + } + + ], [ + + { + + symbol: 'none', + coord: [76.285513, 47.390485] + }, + { + + symbol: 'none', + coord: [61.285513, 47.390485] + } + ] + + + ], + animation: false + } +}; +var series31 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '云南', + selected: true + + }, + { + name: '安徽', + selected: true + + }, + { + name: '福建', + selected: true + + }, + { + name: '湖南', + selected: true + + }, + + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [4, 0], + name: "云南省", + name_en:'Yunnan', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark6', + formatter: ['{Province|Yunnan}\n{l1|0} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [50, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [102.712251, 25.040609] + }, + + { + name: "云南省", + name_en:'Yunnan', + coord: [94.773556, 20.682906] + } + + ], [ + + { + + symbol: 'none', + coord: [94.773556, 20.682906] + }, + { + + symbol: 'none', + coord: [79.773556, 20.682906] + } + ], + //------------------------------------------- + [ + { + value: [4, 0], + name: "安徽省", + name_en:'Anhui', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark6', + formatter: ['{Province|Anhui}\n{l1|0} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [41, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [117.283042, 31.86119] + }, + + { + name: "安徽省", + name_en:'Anhui', + coord: [135.767413, 38.041544] + } + + ], [ + + { + + symbol: 'none', + coord: [135.767413, 38.041544] + }, + { + + symbol: 'none', + coord: [150.767413, 38.041544] + } + ], + + //------------------------------------------- + [ + { + value: [4, 0], + name: "福建省", + name_en:'Fujian', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark7', + formatter: ['{Province|Fujian}\n {l1|0} {l2|0}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 118], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [119.306239, 26.075302] + }, + + { + name: "福建省", + name_en:'Fujian', + coord: [130.280637, 17.125178] + } + + ], [ + + { + + symbol: 'none', + coord: [130.280637, 17.125178] + }, + { + + symbol: 'none', + coord: [146.280637, 17.125178] + } + ], + + //------------------------------------------- + [ + { + value: [3, 0], + name: "湖南省", + name_en:'Hunan', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark8', + formatter: [ + '{block50|}{Province|Hunan}' + + '\n{block100|}{l1|0} {l2|0}' + + '\n{block100|}{l4|apply} {l5|screening}' + + '\n{l6|}'].join('\n'), +// '{Province|湖南}\n{l1|3} {l2|0} \n{l4|apply} {l5|screening} \n'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block50: {padding: [0, 0, 0, -192],}, + block100: {padding: [0, 0, 0, -115],}, + l6: { + align: 'left', + + color: '#fff', + padding: [0, 0, -43, 0], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [112.982279, 28.19409] + }, + + { + name: "湖南省", + name_en:'Hunan', + coord: [101.158659, 45.249382] + } + + ], [ + + { + + symbol: 'none', + coord: [101.158659, 45.249382] + }, + { + + symbol: 'none', + coord: [86.158659, 45.249382] + } + ] + + + ], + animation: false + } +}; +var series41 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '四川', + selected: true + + }, + { + name: '浙江', + selected: true + + }, + { + name: '甘肃', + selected: true + + }, + { + name: '河南', + selected: true + + }, + + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [4, 0], + name: "四川省", + name_en:'Sichaun', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark9', + formatter: ['{Province|Sichuan}\n{l1|0} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [104.065735, 30.659462] + }, + + { + name: "四川省", + name_en:'Sichaun', + coord: [91.886421, 18.645686] + } + + ], [ + + { + + symbol: 'none', + coord: [91.886421, 18.645686] + }, + { + + symbol: 'none', + coord: [76.886421, 18.645686] + } + ], + //------------------------------------------- + [ + { + value: [3, 0], + name: "浙江省", + name_en:'Zhejiang', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark6', + formatter: ['{Province|Zhejiang}\n{l1|0} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [50, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [120.153576, 30.287459] + }, + + { + name: "浙江省", + name_en:'Zhejiang', + coord: [127.650766, 26.695733] + } + + ], [ + + { + + symbol: 'none', + coord: [127.650766, 26.695733] + }, + { + + symbol: 'none', + coord: [142.650766, 26.695733] + } + ], + + //------------------------------------------- + [ + { + value: [2, 0], + name: "甘肃省", + name_en:'Gansu', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark9', + formatter: ['{Province|Gansu}\n{l1|0} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [39, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [103.823557, 36.058039] + }, + + { + name: "甘肃省", + name_en:'Gansu', + coord: [89.678746, 45.353253] + } + + ], [ + + { + + symbol: 'none', + coord: [89.678746, 45.353253] + }, + { + + symbol: 'none', + coord: [74.678746, 45.353253] + } + ], + + //------------------------------------------- + [ + { + value: [2, 0], + name: "河南省", + name_en:'Henan', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + formatter: ['{block100|}{Province|Henan}\n{block200|}{l1|0} {l2|0}\n{block200|}{l4|apply} {l5|screening}\n{l6|}'].join('\n'), +// '{Province|河南}\n {l1|3} {l2|0}\n {l4|apply} {l5|screening}\n'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block100: {padding: [0, 35, 0, 0]}, + block200: {padding: [0, 120, 0, 0]}, + l6: { + align: 'left', + + color: '#fff', + padding: [0, 0, -43, 0], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [113.665412, 34.757975] + }, + + { + name: "河南省", + name_en:'Henan', + coord: [119.261599, 44.562738] + } + + ], [ + + { + + symbol: 'none', + coord: [119.261599, 44.562738] + }, + { + + symbol: 'none', + coord: [134.261599, 44.562738] + } + ] + + + ], + animation: false + } +}; +var series51 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '黑龙江', + selected: true + + }, + { + name: '吉林', + selected: true + + }, + { + name: '宁夏', + selected: true + + }, + { + name: '陕西', + selected: true + + }, + + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [3, 0], + name: "黑龙江省", + name_en:'Heilongjiang', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark3', + formatter: ['{Province|Heilongjiang}\n {l1|0} {l2|0}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 125], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [38, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [126.642464, 45.756967] + }, + + { + name: "黑龙江省", + name_en:'Heilongjiang', + coord: [134.347382, 52.736071] + } + + ], [ + + { + + symbol: 'none', + coord: [134.347382, 52.736071] + }, + { + + symbol: 'none', + coord: [149.347382, 52.736071] + } + ], + //------------------------------------------- + [ + { + value: [2, 0], + name: "吉林省", + name_en:'Jilin', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark3', + formatter: ['{Province|Jinlin}\n {l1|0} {l2|0}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 125], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [125.3245, 43.886841] + }, + + { + name: "吉林省", + name_en:'Jilin', + coord: [134.788917, 37.913398] + } + + ], [ + + { + + symbol: 'none', + coord: [134.788917, 37.913398] + }, + { + + symbol: 'none', + coord: [149.788917, 37.913398] + } + ], + + //------------------------------------------- + [ + { + value: [2, 0], + name: "宁夏", + name_en:'Ningxia', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark9', + formatter: ['{Province|Ningxia}\n{l1|0} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [37, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [106.278179, 38.46637] + }, + + { + name: "宁夏", + name_en:'Ningxia', + coord: [94.895529, 46.848916] + } + + ], [ + + { + + symbol: 'none', + coord: [94.895529, 46.848916] + }, + { + + symbol: 'none', + coord: [79.895529, 46.848916] + } + ], + + //------------------------------------------- + [ + { + value: [2, 0], + name: "陕西省", + name_en:'Shannxi', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark9', + formatter: ['{Province|Shannxi}\n{l1|0} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [108.948024, 34.263161] + }, + + { + name: "陕西省", + name_en:"Shannxi", + coord: [89.721864, 19.043659] + } + + ], [ + + { + + symbol: 'none', + coord: [89.721864, 19.043659] + }, + { + + symbol: 'none', + coord: [74.721864, 19.043659] + } + ] + + + ], + animation: false + } +}; +var series61 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '广西', + selected: true + + }, + { + name: '贵州', + selected: true + + }, + { + name: '河北', + selected: true + + }, + { + name: '江西', + selected: true + + } + + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [1, 0], + name: "广西", + name_en:'Guangxi', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + formatter: ['{Province|Guangxi}\n{l1|0} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [108.320004, 22.82402] + }, + + { + name: "广西", + name_en:'Guangxi', + coord: [98.864302, 17.095381] + } + + ], [ + + { + + symbol: 'none', + coord: [98.864302, 17.095381] + }, + { + + symbol: 'none', + coord: [83.864302, 17.095381] + } + ], + //------------------------------------------- + [ + { + value: [1, 0], + name: "贵州省", + name_en:'Guizhou', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark4', + formatter: ['{Province|Guizhou}\n{l1|0} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [38, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [106.713478, 26.578343] + }, + + { + name: "贵州省", + name_en:'Guizhou', + coord: [87.749248, 38.927463] + } + + ], [ + + { + + symbol: 'none', + coord: [87.749248, 38.927463] + }, + { + + symbol: 'none', + coord: [72.749248, 38.927463] + } + ], + + //------------------------------------------- + [ + { + value: [1, 0], + name: "河北省", + name_en:'Hebei', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + formatter: ['{Province|Hebei}\n {l1|0} {l2|0}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 120], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [38, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [114.502461, 38.045474] + }, + + { + name: "河北省", + name_en:'Hebei', + coord: [133.529852, 52.025402] + } + + ], [ + + { + + symbol: 'none', + coord: [133.529852, 52.025402] + }, + { + + symbol: 'none', + coord: [148.529852, 52.025402] + } + ], + + //------------------------------------------- + [ + { + value: [1, 0], + name: "江西省", + name_en:'Jiangxi', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark6', + formatter: ['{Province|Jiangxi}\n{l1|0} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [43, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [115.892151, 28.676493] + }, + + { + name: "江西省", + name_en:'Jiangxi', + coord: [124.265664, 28.676493] + } + + ], [ + + { + + symbol: 'none', + coord: [124.265664, 28.676493] + }, + { + + symbol: 'none', + coord: [139.265664, 28.676493] + } + ] + + + ], + animation: false + } +}; +var series71 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '辽宁', + selected: true + + }, + { + name: '山西', + selected: true + + }, + { + name: '青海', + selected: true + + }, + { + name: '内蒙古', + selected: true + + } + + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [1, 0], + name: "辽宁省", + name_en:'Liaoning', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + formatter: ['{Province|Liaoning}\n {l1|0} {l2|0}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 120], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [38, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [123.429096, 41.796767] + }, + + { + name: "辽宁省", + name_en:'Liaoning', + coord: [133.979436, 49.351453] + } + + ], [ + + { + + symbol: 'none', + coord: [133.979436, 49.351453] + }, + { + + symbol: 'none', + coord: [148.979436, 49.351453] + } + ], + //------------------------------------------- + [ + { + value: [1, 0], + name: "内蒙古", + name_en:'Inner Mongolia', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + formatter: ['{block50|}{Province|Inner Mongolia}\n{block100|}{l1|0} {l2|0}\n{block100|}{l4|apply} {l5|screening}\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + block50: {padding: [0, 0, 0, -200]}, + block100: {padding: [0, 0, 0, -120]}, + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: {padding: [-5, 0, 0, 0]}, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [111.670801, 40.818311] + }, + + { + name: "内蒙古", + name_en:'Inner Mongolia', + coord: [106.309902, 49.829852] + } + + ], [ + + { + + symbol: 'none', + coord: [106.309902, 49.829852] + }, + { + + symbol: 'none', + coord: [91.309902, 49.829852] + } + ], + + [ + { + value: [1, 0], + name: "青海省", + name_en:'Qinghai', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + formatter: ['{Province|Qinghai}\n{l1|0} {l2|0} \n{l4|apply} {l5|screening} \n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [98.778916, 36.623178] + }, + + { + name: "青海省", + name_en:'Qinghai', + coord: [81.289578, 24.964161] + } + + ], [ + + { + + symbol: 'none', + coord: [81.289578, 24.964161] + }, + { + + symbol: 'none', + coord: [66.289578, 24.964161] + } + ], + [ + { + value: [1, 0], + name: "山西", + name_en:'Shanxi', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark6', + formatter: ['{Province|Shanxi}\n{l1|0} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [43, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + } + } + }, + coord: [112.549248, 37.857014] + }, + + { + name: "山西", + name_en:'Shanxi', + coord: [130.265664, 28.676493] + } + + ], [ + + { + + symbol: 'none', + coord: [130.265664, 28.676493] + }, + { + + symbol: 'none', + coord: [145.265664, 28.676493] + } + ] + + + ], + animation: false + } +}; +var series81 = { + name: '1', + type: 'map', + zoom: 0.7, + top: '13%', + left: '30%', + mapType: 'china', + clickable: false, + label: { + normal: { + show: false + }, + emphasis: { + show: false + } + }, + itemStyle: { + + normal: { + areaColor: '#5f3776', + borderColor: '#643d7a', + borderWidth: 1, + //shadowColor:'rgba(121, 59, 136, 0.3)', //阴影颜色 + // shadowOffsetX:10, //阴影水平方向上的偏移距离。 + // shadowOffsetY:8, //阴影垂直方向上的偏移距离 + // shadowBlur:2, + + }, + emphasis: { + areaColor: '#c19fd2' + } + }, + data: [ + { + name: '海南', + selected: true + }, + { + name: '吉林', + selected: true + }, + { + name: '天津', + selected: true + } + ], + + markLine: { + symbol: ['image://spot.png', 'none'], + symbolSize: 20, + silent: true, + itemStyle: { + normal: { + color: 'black', + lineStyle: { + type: 'solid', + width: 1, + color: '#fff', + //shadowColor: 'rgba(255,255,255,1.0)', + //shadowBlur: 5, + //shadowOffsetX: 30, + //shadowOffsetY: 30, + }, + } + }, + data: [ + [ + { + value: [1, 0], + name: "海南省", + name_en:'Hainan', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark6', + formatter: ['{Province|Hainan}\n{l1|0} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 0, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [38, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [110.33119, 20.031971] + }, + + { + name: "海南省", + name_en:'Hainan', + coord: [123.979436, 15.351453] + } + + ], [ + + { + + symbol: 'none', + coord: [123.979436, 15.351453] + }, + { + + symbol: 'none', + coord: [143.979436, 15.351453] + } + ], + [{ + value: [1, 0], + name: "吉林", + name_en:'Jilin', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + formatter: ['{Province|Jilin}\n {l1|0} {l2|0}\n {l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 120], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + l6: { + align: 'left', + + color: '#fff', + padding: [38, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [125.3245, 43.886841] + }, + + { + name: "吉林", + name_en:'Jilin', + coord: [133.529852, 52.025402] + } + + ], [ + + { + + symbol: 'none', + coord: [133.529852, 52.025402] + }, + { + + symbol: 'none', + coord: [148.529852, 52.025402] + } + ], + [ + { + value: [4, 0], + name: "天津", + name_en:'Tianjin', + label: { + textStyle: { + align: 'left', + verticalAlign: 'bottom', + baseline: 'bottom', + fontSize: 60, + fontFamily: 'sl' + }, + normal: { + mark: 'mark2', + formatter: [ + '{block50|}{Province|Tianjin}' + + '\n{block100|}{l1|0} {l2|0}' + + '\n{block100|}{l4|apply} {l5|screening}' + + '\n{l6|}' + + ' \n'].join('\n'), + +// '{Province|新疆}\n{l1|4} {l2|0}\n{l4|apply} {l5|screening}\n\n\n{l6|}'].join('\n'), + + position: 'end', + distance: 20, + rich: { + Province: { + align: 'left', + padding: [8, 0, 30, 0], + fontSize: 20, + fontFamily: 'myFourthFont', + }, + block50: {padding: [0, 0, 0, 320],}, + block100: {padding: [0, 0, 0, 400],}, + l6: { + align: 'left', + + color: '#fff', + padding: [53, 0, 18, 10], + // padding: 5 , + //lineHeight:1, + fontSize: 50, //height: 66, + fontFamily: 'myFirstFont', + }, + l1: { + align: 'center', + //verticalAlign:'middle', + // backgroundColor: '#F86A3E', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [0, 0, 5, 0], + fontSize: 32, + width: 50, + height: 30, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFirstFont', + }, + l2: { + align: 'center', + //verticalAlign:'bottom', + //backgroundColor: '#F41485', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFirstFont', + }, + l3: { + + align: 'center', + backgroundColor: 'rgba(145,192,192,0.6)', + color: '#fff', + //borderWidth: 1, + padding: [0, 0, 5, 0], + fontSize: 32, + width: 80, + height: 30, + borderWidth: 1, + borderColor: 'rgba(145,192,192,0.1)', + fontFamily: 'myFirstFont', + // padding: [5, 13, 5, 13], + }, + l4: { + align: 'center', + backgroundColor: 'rgba(248,106,62,0.6)', + color: '#fff', + padding: [5, 0, 0, 0], + fontSize: 12, + width: 50, + height: 16, + borderWidth: 1, + borderColor: 'rgba(248,106,62,0.1)', + fontFamily: 'myFourthFont', + // padding: [5, 13, 5, 13], + }, + l5: { + align: 'center', + backgroundColor: 'rgba(244,20,133,0.6)', + color: '#fff', + borderRadius: 0, + padding: [5, 0, 0, 0], + fontSize: 12, + width: 80, + height: 16, + borderWidth: 1, + borderColor: 'rgba(244,20,133,0.1)', + fontFamily: 'myFourthFont', + //padding: [5, 13, 5, 13], + }, + + } + } + }, + coord: [117.190182, 39.125596] + }, + + { + name: "天津", + name_en:'Tianjin', + coord: [76.285513, 47.390485] + } + + ], [ + + { + + symbol: 'none', + coord: [76.285513, 47.390485] + }, + { + + symbol: 'none', + coord: [61.285513, 47.390485] + } + ] + + ], + animation: false + } +}; + +var seriesArr = [series11, series21, series31, series41, series51, series61, series71, series81]; + +var sequence2 = {}; +sequence2['1'] = series11; +sequence2['2'] = series21; +sequence2['3'] = series31; +sequence2['4'] = series41; +sequence2['5'] = series51; +sequence2['6'] = series61; +sequence2['7'] = series71; +sequence2['8'] = series81; + + +var pointData2 = [ + {province: '1'}, + {province: '2'}, + {province: '3'}, + {province: '4'}, + {province: '5'}, + {province: '6'}, + {province: '7'}, + {province: '8'}, +]; + diff --git a/gicc/Scripts/chinaData2.js b/gicc/Scripts/chinaData2.js index 25de6c406cf02519dd1cf9f9925bb7014f7021d0..3e104f7c6256a86996e160c966d1855c20c04617 100644 --- a/gicc/Scripts/chinaData2.js +++ b/gicc/Scripts/chinaData2.js @@ -35,7 +35,7 @@ let mapp7 = { }; // 使用后台返回数据填充 -$.getJSON("http://172.30.2.105:2019/data-plat/screening/statistics", function (data) { +$.getJSON("http://gicc-back-end:2019/data-plat/screening/statistics", function (data) { let screening = data.data; $.each(pointData2, function (idx, item) { var len = seriesArr[idx].data.length; @@ -241,7 +241,7 @@ var series11 = { mark: 'mark1', formatter: [ '{Province|江苏}' - + '\n{block10|}{l1|32} {l2|23} ' + + '\n{block10|}{l1|0} {l2|0} ' + '\n{block10|}{l4|申请数} {l5|筛查数} ' + '\n{l6|} ' + ' \n'].join('\n'), @@ -290,7 +290,7 @@ var series11 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 50, + width: 80, height: 30, borderWidth: 1, @@ -319,7 +319,7 @@ var series11 = { //borderRadius: 15, padding: [5, 0, 0, 0], fontSize: 12, - width: 50, + width: 80, height: 16, borderWidth: 1, @@ -368,7 +368,7 @@ var series11 = { mark: 'mark1', formatter: [ '{Province|广东}' - + '\n{block10|}{l1|61} {l2|43} ' + + '\n{block10|}{l1|0} {l2|0} ' + '\n{block10|}{l4|申请数} {l5|筛查数} ' + '\n{l6|} ' + ' \n'].join('\n'), @@ -406,7 +406,7 @@ var series11 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -421,7 +421,7 @@ var series11 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -448,7 +448,7 @@ var series11 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -507,7 +507,7 @@ var series11 = { mark: 'mark1', formatter: [ '{Province|湖北}' - + '\n{block10|}{l1|22} {l2|15} ' + + '\n{block10|}{l1|0} {l2|0} ' + '\n{block10|}{l4|申请数} {l5|筛查数} ' + '\n{l6|} ' + ' \n'].join('\n'), @@ -558,7 +558,7 @@ var series11 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 50, + width: 80, height: 30, borderWidth: 1, @@ -587,7 +587,7 @@ var series11 = { //borderRadius: 15, padding: [5, 0, 0, 0], fontSize: 12, - width: 50, + width: 80, height: 16, borderWidth: 1, @@ -637,7 +637,7 @@ var series11 = { mark: 'mark1', formatter: [ '{Province|山东}' - + '\n{block10|}{l1|30} {l2|15} ' + + '\n{block10|}{l1|0} {l2|0} ' + '\n{block10|}{l4|申请数} {l5|筛查数} ' + '\n{l6|} ' + ' \n'].join('\n'), @@ -688,7 +688,7 @@ var series11 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 50, + width: 80, height: 30, borderWidth: 1, @@ -717,7 +717,7 @@ var series11 = { //borderRadius: 15, padding: [5, 0, 0, 0], fontSize: 12, - width: 50, + width: 80, height: 16, borderWidth: 1, @@ -846,7 +846,7 @@ var series21 = { mark: 'mark5', formatter: [ '{block100|}{Province|北京}' - + '\n{block200|}{l1|11} {l2|4}' + + '\n{block200|}{l1|0} {l2|0}' + '\n{block200|}{l4|申请数} {l5|筛查数}' + '\n{block10|}'].join('\n'), @@ -888,7 +888,7 @@ var series21 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, @@ -917,7 +917,7 @@ var series21 = { //borderRadius: 15, padding: [5, 0, 0, 0], fontSize: 12, - width: 54, + width: 80, height: 16, borderWidth: 1, @@ -974,7 +974,7 @@ var series21 = { mark: 'mark5', formatter: [ '{block100|}{Province|上海}' - + '\n{block200|}{l1|17} {l2|10}' + + '\n{block200|}{l1|0} {l2|0}' + '\n{block200|}{l4|申请数} {l5|筛查数}' + '\n{block10|}'].join('\n'), @@ -1016,7 +1016,7 @@ var series21 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, @@ -1045,7 +1045,7 @@ var series21 = { //borderRadius: 15, padding: [5, 0, 0, 0], fontSize: 12, - width: 54, + width: 80, height: 16, borderWidth: 1, @@ -1103,7 +1103,7 @@ var series21 = { mark: 'mark2', formatter: [ '{block50|}{Province|重庆}' - + '\n{block100|}{l1|8} {l2|3}' + + '\n{block100|}{l1|0} {l2|0}' + '\n{block100|}{l4|申请数} {l5|筛查数}' + '\n{l6|}' + ' \n'].join('\n'), @@ -1153,7 +1153,7 @@ var series21 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -1168,7 +1168,7 @@ var series21 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -1195,7 +1195,7 @@ var series21 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -1245,7 +1245,7 @@ var series21 = { mark: 'mark2', formatter: [ '{block50|}{Province|新疆}' - + '\n{block100|}{l1|4} {l2|0}' + + '\n{block100|}{l1|0} {l2|0}' + '\n{block100|}{l4|申请数} {l5|筛查数}' + '\n{l6|}' + ' \n'].join('\n'), @@ -1296,7 +1296,7 @@ var series21 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -1311,7 +1311,7 @@ var series21 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -1338,7 +1338,7 @@ var series21 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -1465,7 +1465,7 @@ var series31 = { }, normal: { mark: 'mark6', - formatter: ['{Province|云南}\n{l1|12} {l2|6}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|云南}\n{l1|0} {l2|0}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -1509,7 +1509,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -1524,7 +1524,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -1551,7 +1551,7 @@ var series31 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -1598,7 +1598,7 @@ var series31 = { }, normal: { mark: 'mark6', - formatter: ['{Province|安徽}\n{l1|12} {l2|9}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|安徽}\n{l1|0} {l2|0}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -1642,7 +1642,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -1657,7 +1657,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -1684,7 +1684,7 @@ var series31 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -1732,7 +1732,7 @@ var series31 = { }, normal: { mark: 'mark7', - formatter: ['{Province|福建}\n {l1|12} {l2|7}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|福建}\n {l1|0} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -1776,7 +1776,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -1791,7 +1791,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -1818,7 +1818,7 @@ var series31 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -1868,7 +1868,7 @@ var series31 = { mark: 'mark8', formatter: [ '{block50|}{Province|湖南}' - + '\n{block100|}{l1|13} {l2|3}' + + '\n{block100|}{l1|0} {l2|0}' + '\n{block100|}{l4|申请数} {l5|筛查数}' + '\n{l6|}'].join('\n'), // '{Province|湖南}\n{l1|3} {l2|0} \n{l4|申请数} {l5|筛查数} \n'].join('\n'), @@ -1917,7 +1917,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -1932,7 +1932,7 @@ var series31 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -1959,7 +1959,7 @@ var series31 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -2086,7 +2086,7 @@ var series41 = { }, normal: { mark: 'mark9', - formatter: ['{Province|四川}\n{l1|36} {l2|25} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), + formatter: ['{Province|四川}\n{l1|0} {l2|0} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -2130,7 +2130,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -2145,7 +2145,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -2172,7 +2172,7 @@ var series41 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -2219,7 +2219,7 @@ var series41 = { }, normal: { mark: 'mark6', - formatter: ['{Province|浙江}\n{l1|23} {l2|11}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|浙江}\n{l1|0} {l2|0}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -2263,7 +2263,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -2278,7 +2278,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -2305,7 +2305,7 @@ var series41 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -2353,7 +2353,7 @@ var series41 = { }, normal: { mark: 'mark9', - formatter: ['{Province|甘肃}\n{l1|3} {l2|1} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), + formatter: ['{Province|甘肃}\n{l1|0} {l2|0} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -2397,7 +2397,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -2412,7 +2412,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -2439,7 +2439,7 @@ var series41 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -2486,7 +2486,7 @@ var series41 = { fontFamily: 'sl' }, normal: { - formatter: ['{block100|}{Province|河南}\n{block200|}{l1|17} {l2|9}\n{block200|}{l4|申请数} {l5|筛查数}\n{l6|}'].join('\n'), + formatter: ['{block100|}{Province|河南}\n{block200|}{l1|0} {l2|0}\n{block200|}{l4|申请数} {l5|筛查数}\n{l6|}'].join('\n'), // '{Province|河南}\n {l1|3} {l2|0}\n {l4|申请数} {l5|筛查数}\n'].join('\n'), position: 'end', @@ -2533,7 +2533,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -2548,7 +2548,7 @@ var series41 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -2575,7 +2575,7 @@ var series41 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -2702,7 +2702,7 @@ var series51 = { }, normal: { mark: 'mark3', - formatter: ['{Province|黑龙江}\n {l1|17} {l2|13}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|黑龙江}\n {l1|0} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -2746,7 +2746,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -2761,7 +2761,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -2788,7 +2788,7 @@ var series51 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -2835,7 +2835,7 @@ var series51 = { }, normal: { mark: 'mark3', - formatter: ['{Province|吉林}\n {l1|6} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|吉林}\n {l1|0} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -2879,7 +2879,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -2894,7 +2894,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -2921,7 +2921,7 @@ var series51 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -2969,7 +2969,7 @@ var series51 = { }, normal: { mark: 'mark9', - formatter: ['{Province|宁夏}\n{l1|3} {l2|2} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), + formatter: ['{Province|宁夏}\n{l1|0} {l2|0} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -3013,7 +3013,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -3028,7 +3028,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -3055,7 +3055,7 @@ var series51 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -3103,7 +3103,7 @@ var series51 = { }, normal: { mark: 'mark9', - formatter: ['{Province|陕西}\n{l1|11} {l2|5} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), + formatter: ['{Province|陕西}\n{l1|0} {l2|0} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -3147,7 +3147,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -3162,7 +3162,7 @@ var series51 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -3189,7 +3189,7 @@ var series51 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -3315,7 +3315,7 @@ var series61 = { fontFamily: 'sl' }, normal: { - formatter: ['{Province|广西}\n{l1|11} {l2|6} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), + formatter: ['{Province|广西}\n{l1|0} {l2|0} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -3359,7 +3359,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -3374,7 +3374,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -3401,7 +3401,7 @@ var series61 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -3448,7 +3448,7 @@ var series61 = { }, normal: { mark: 'mark4', - formatter: ['{Province|贵州}\n{l1|5} {l2|3} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), + formatter: ['{Province|贵州}\n{l1|0} {l2|0} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -3492,7 +3492,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -3507,7 +3507,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -3534,7 +3534,7 @@ var series61 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -3581,7 +3581,7 @@ var series61 = { fontFamily: 'sl' }, normal: { - formatter: ['{Province|河北}\n {l1|12} {l2|7}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|河北}\n {l1|0} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -3625,7 +3625,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -3640,7 +3640,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -3667,7 +3667,7 @@ var series61 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -3715,7 +3715,7 @@ var series61 = { }, normal: { mark: 'mark6', - formatter: ['{Province|江西}\n{l1|16} {l2|15}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|江西}\n{l1|0} {l2|0}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -3759,7 +3759,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -3774,7 +3774,7 @@ var series61 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -3801,7 +3801,7 @@ var series61 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -3927,7 +3927,7 @@ var series71 = { fontFamily: 'sl' }, normal: { - formatter: ['{Province|辽宁}\n {l1|12} {l2|2}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|辽宁}\n {l1|0} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -3971,7 +3971,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -3986,7 +3986,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -4013,7 +4013,7 @@ var series71 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -4059,7 +4059,7 @@ var series71 = { fontFamily: 'sl' }, normal: { - formatter: ['{block50|}{Province|内蒙古}\n{block100|}{l1|21} {l2|15}\n{block100|}{l4|申请数} {l5|筛查数}\n{l6|}'].join('\n'), + formatter: ['{block50|}{Province|内蒙古}\n{block100|}{l1|0} {l2|0}\n{block100|}{l4|申请数} {l5|筛查数}\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -4096,7 +4096,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -4111,7 +4111,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -4138,7 +4138,7 @@ var series71 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -4184,7 +4184,7 @@ var series71 = { fontFamily: 'sl' }, normal: { - formatter: ['{Province|青海}\n{l1|3} {l2|3} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), + formatter: ['{Province|青海}\n{l1|0} {l2|0} \n{l4|申请数} {l5|筛查数} \n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -4228,7 +4228,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -4243,7 +4243,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -4270,7 +4270,7 @@ var series71 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -4316,7 +4316,7 @@ var series71 = { }, normal: { mark: 'mark6', - formatter: ['{Province|山西}\n{l1|18} {l2|10}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|山西}\n{l1|0} {l2|0}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -4360,7 +4360,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -4375,7 +4375,7 @@ var series71 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -4402,7 +4402,7 @@ var series71 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -4519,7 +4519,7 @@ var series81 = { }, normal: { mark: 'mark6', - formatter: ['{Province|海南}\n{l1|1} {l2|1}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|海南}\n{l1|0} {l2|0}\n{l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -4563,7 +4563,7 @@ var series81 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -4578,7 +4578,7 @@ var series81 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -4605,7 +4605,7 @@ var series81 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -4649,7 +4649,7 @@ var series81 = { fontFamily: 'sl' }, normal: { - formatter: ['{Province|吉林}\n {l1|6} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), + formatter: ['{Province|吉林}\n {l1|0} {l2|0}\n {l4|申请数} {l5|筛查数}\n\n\n{l6|}'].join('\n'), position: 'end', distance: 20, @@ -4693,7 +4693,7 @@ var series81 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -4708,7 +4708,7 @@ var series81 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -4735,7 +4735,7 @@ var series81 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', @@ -4783,7 +4783,7 @@ var series81 = { mark: 'mark2', formatter: [ '{block50|}{Province|天津}' - + '\n{block100|}{l1|1} {l2|0}' + + '\n{block100|}{l1|0} {l2|0}' + '\n{block100|}{l4|申请数} {l5|筛查数}' + '\n{l6|}' + ' \n'].join('\n'), @@ -4834,7 +4834,7 @@ var series81 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 58, + width: 80, height: 30, borderWidth: 1, @@ -4849,7 +4849,7 @@ var series81 = { //borderWidth: 1, padding: [0, 0, 5, 0], fontSize: 32, - width: 54, + width: 80, height: 30, borderWidth: 1, borderColor: 'rgba(145,192,192,0.1)', @@ -4876,7 +4876,7 @@ var series81 = { borderRadius: 0, padding: [5, 0, 0, 0], fontSize: 12, - width: 58, + width: 80, height: 16, borderWidth: 1, borderColor: 'rgba(244,20,133,0.1)', diff --git a/gicc/Scripts/update.js b/gicc/Scripts/update.js index 8055b0c661209695c03b8dd7d4e7092f06595e94..c36acc29fd5c5fe0b635a077ab0ef1537cd6184f 100644 --- a/gicc/Scripts/update.js +++ b/gicc/Scripts/update.js @@ -1,34 +1,34 @@ // 血检总人数 -let num = 33869; +let num = 0; //hp血检阳性数 -let num2 = 15197; +let num2 = 0; // 实际精查人数 -let num3 = 5409; +let num3 = 0; // /应精查人数 -let num4 = 11751; +let num4 = 0; // 高级别上皮内瘤变 -let rnum1 = '80%'; +let rnum1 = '0%'; // 早期胃癌 -let rnum2 = '80%'; +let rnum2 = '0%'; // 早期食管癌 -let rnum3 = '54%'; +let rnum3 = '0%'; // 萎缩性胃炎 -let onum1 = 1174; +let onum1 = 0; // 胃溃疡 -let onum2 = 349; +let onum2 = 0; // 胃息肉 -let onum3 = 837; +let onum3 = 0; // 申请医院 -let anum1 = 450; +let anum1 = 0; // 开展筛查医院 -let anum2 = 83; +let anum2 = 0; // 筛查总人数 -let anum3 = 33869; +let anum3 = 0; // 认证医院 -let anum4 = 347; +let anum4 = 0; // 使用后台返回数据填充 -$.getJSON("http://172.30.2.105:2019/data-plat/complex/statistics", function(data) { +$.getJSON("http://gicc-back-end:2019/data-plat/complex/statistics", function(data) { let complex = data.data; // console.log(complex); obj.count1.lastNumber = complex.serumActualTotal; diff --git a/gicc/css/stylePc.css b/gicc/css/stylePc.css index 89659504d1be08d20a9abf011256a7e2ff89f895..d47c2f7c41e42099375d8c2238c2e386834c6403 100644 --- a/gicc/css/stylePc.css +++ b/gicc/css/stylePc.css @@ -46,6 +46,7 @@ body { height: 100%; } + ul, li { list-style: none; @@ -280,7 +281,7 @@ left_tittle { .borderbox { border: 2px solid #fff; - width: 16vw; + width: 21vw; min-width:234px; height: 44%; position: fixed; @@ -374,7 +375,7 @@ left_tittle { /*Left2*/ .leftbox { - width: 18%; + width: 23%; min-width: 200px; height: 100%; position: fixed; @@ -536,6 +537,22 @@ left_tittle { .wrap_tittle div{padding-left:1.8vw;float:left;} /* 标题下划线 */ +.underline1 { + width: 6vw; + position: relative; +} + +.underline1::after { + display: inline-block; + content: ""; + background: #ffffff; + height: 2px; + width: 6vw; + position: absolute; + top: 3vh; + left: 0vw; +} + .underline { width: 4.8vw; position: relative; @@ -552,11 +569,12 @@ left_tittle { left: 0vw; } + /* 右下角的备注 */ #mrak { position: fixed; - right: 5vw; + right: 3vw; bottom: 4.5vh;font-size: 1.0vw; } diff --git a/gicc/english.html b/gicc/english.html new file mode 100644 index 0000000000000000000000000000000000000000..820cdad8a2b768b02e24859fb611005052fa928e --- /dev/null +++ b/gicc/english.html @@ -0,0 +1,1026 @@ + + + +
+ +GECA EGC Screening Platform
+ +* %gastric cancer detection rate:
+gastric cancer count/gastroscopy count
++ + | serologic test +
+total count
+ + +Hp positive
++ + | gastroscope test +
+actual count
+ +purposed count
+*Only the top 30 are shown
+