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://139.9.163.126: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: 80, 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: 80, 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: 80, 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: 80, 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: 80, 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: 80, 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: 80, 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: 80, 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);