2025-06-27 10:04:22 +08:00

446 lines
18 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0, user-scalable=0">
<title></title>
<script src="../lib/jquery/dist/jquery.js"></script>
<script src="../lib/linq.js/Content/Scripts/linq.js"></script>
<script src="../lib/linq.js/Content/Scripts/linq-vsdoc.js"></script>
<script src="../lib/echarts/echarts.min.js"></script>
<script src="../lib/vuejs/vue.js"></script>
<script src="../lib/vuejs/axios.min.js"></script>
<script src="../lib/elementui/index.js"></script>
<link href="../lib/elementui/index.css" rel="stylesheet" />
</head>
<body>
<div id="app" style="background-color:#013954">
<el-container>
<el-main>
<div id="main" style="width: 100%;height:700px;">
</div>
</el-main>
</el-container>
</div>
</body>
</html>
<script>
var app = new Vue({
el: '#app',
data() {
return {
message: 'Hello Vue!',
jcxm_value: '',
mapData1:[],
num : 0,
numBer:1000
}
},
mounted() {
var _this = this; //this指向vue
let sendArr = [
axios.get('./home/buHeGeLvQX')
]
axios.all(sendArr).then(axios.spread(function ( res2) {
_this.mapData1 = res2;
_this.refreshMap();
}));
},
methods: {
searchJCXM(val) {
},
refreshMap() {
var _this = this; //this指向vue
var year = ["2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012","2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020"];
var mapData = [
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[]
];
mapData = this.mapData1.data;
console.log('xsmapdata',mapData);
var dYearData = [];
/*柱子Y名称*/
var categoryData = [];
var barData = [];
if(_this.num!=0){
_this.numBer = 100
}
for (var i = 0; i < mapData.length; i++) {
barData.push(mapData[i].count2);
categoryData.push(mapData[i].name);
}
$.getJSON(uploadedDataURL, function (geoJson) {
echarts.registerMap('china', geoJson);
var convertData = function (data) {
var res = [];
for (var i = 0; i < data.length; i++) {
var geoCoord = geoCoordMap[data[i].name];
if (geoCoord) {
res.push({
name: data[i].name,
value: geoCoord.concat(data[i].value)
});
}
}
return res;
console.log(JSON.stringify(mapData));
};
optionXyMap01 = {
timeline: {
data: year,
axisType: 'category',
autoPlay: true,
playInterval: 3000,
left: '10%',
right: '10%',
bottom: '3%',
width: '80%',
label: {
normal: {
textStyle: {
color: '#ddd'
}
},
emphasis: {
textStyle: {
color: '#fff'
}
}
},
symbolSize: 10,
lineStyle: {
color: '#555'
},
checkpointStyle: {
borderColor: '#777',
borderWidth: 2
},
controlStyle: {
showNextBtn: true,
showPrevBtn: true,
normal: {
color: '#666',
borderColor: '#666'
},
emphasis: {
color: '#aaa',
borderColor: '#aaa'
}
},
},
baseOption: {
animation: true,
animationDuration: 1000,
animationEasing: 'cubicInOut',
animationDurationUpdate: 1000,
animationEasingUpdate: 'cubicInOut',
grid: {
right: '1%',
top: '15%',
bottom: '10%',
width: '20%'
},
tooltip: {
trigger: 'axis', // hover触发器
axisPointer: { // 坐标轴指示器,坐标轴触发有效
type: 'shadow', // 默认为直线,可选为:'line' | 'shadow'
shadowStyle: {
color: 'rgba(150,150,150,0.1)' //hover颜色
}
}
},
geo: {
show: true,
map: 'china',
roam: true,
zoom: 10,
center: [121.4648, 31.2891],
label: {
emphasis: {
show: false
}
},
itemStyle: {
normal: {
borderColor: 'rgba(147, 235, 248, 1)',
borderWidth: 1,
areaColor: {
type: 'radial',
x: 0.5,
y: 0.5,
r: 0.8,
colorStops: [
{
offset: 0,
color: 'rgba(147, 235, 248, 0)' // 0% 处的颜色
},
{
offset: 0,
color: 'rgba(248, 235, 248, 0)' // 50% 处的颜色
},
{
offset: 1,
color: 'rgba(147, 235, 248, .2)' // 100% 处的颜色
}],
globalCoord: false // 缺省为 false
},
shadowColor: 'rgba(128, 217, 248, 1)',
// shadowColor: 'rgba(255, 255, 255, 1)',
shadowOffsetX: -2,
shadowOffsetY: 2,
shadowBlur: 10
},
emphasis: {
areaColor: '#389BB7',
borderWidth: 0
}
}
},
},
options: []
};
for (var n = 0; n < year.length; n++) {
optionXyMap01.options.push({
backgroundColor: '#013954',
title: [{
text: '食品风险监测数据动态展示',
left: '25%',
top: '7%',
textStyle: {
color: '#fff',
fontSize: 25
}
},
{
id: 'statistic',
text: year[n] + "检查数据统计情况",
left: '75%',
top: '8%',
textStyle: {
color: '#fff',
fontSize: 25
}
}
],
xAxis: {
type: 'value',
scale: true,
position: 'top',
min: 0,
boundaryGap: false,
splitLine: {
show: false
},
axisLine: {
show: false
},
axisTick: {
show: false
},
axisLabel: {
margin: 2,
textStyle: {
color: '#aaa'
}
},
},
yAxis: {
type: 'category',
// name: 'TOP 20',
nameGap: 16,
axisLine: {
show: true,
lineStyle: {
color: '#ddd'
}
},
axisTick: {
show: false,
lineStyle: {
color: '#ddd'
}
},
axisLabel: {
interval: 0,
textStyle: {
color: '#ddd'
}
},
data: categoryData[n]
},
series: [
//地图
{
type: 'map',
map: 'china',
geoIndex: 0,
aspectScale: 0.75, //长宽比
showLegendSymbol: false, // 存在legend时显示
label: {
normal: {
show: false
},
emphasis: {
show: false,
textStyle: {
color: '#fff'
}
}
},
roam: true,
itemStyle: {
normal: {
areaColor: '#031525',
borderColor: '#FFFFFF',
},
emphasis: {
areaColor: '#2B91B7'
}
},
animation: false,
data: this.mapData
},
//地图中闪烁的点
{
// name: 'Top 5',
type: 'effectScatter',
coordinateSystem: 'geo',
data: convertData(mapData[n].lv),
symbolSize: function (val) {
return val / 10;
},
showEffectOn: 'render',
rippleEffect: {
brushType: 'stroke'
},
hoverAnimation: true,
label: {
normal: {
formatter: '{b}',
position: 'right',
show: true
}
},
itemStyle: {
normal: {
color: colors[colorIndex][n],
shadowBlur: 10,
shadowColor: colors[colorIndex][n]
}
},
zlevel: 1
},
//柱状图
{
zlevel: 1.5,
type: 'bar',
symbol: 'none',
itemStyle: {
normal: {
color: colors[colorIndex][n]
}
},
data: barData[n]
}
]
})
}
myChart.setOption(optionXyMap01);
//console.log(JSON.stringify(optionXyMap01));
});
}
}
})
var myChart = echarts.init(document.getElementById('main'));
var uploadedDataURL = "../map/shmapall.json";
var uploadedDataOffsetURL = "../map/shmapoffsetedit.json";
var geoCoordMap = {
'宝山区': [121.404861,31.392111],
'崇明区': [121.568484, 31.635916],
'嘉定区': [121.244394,31.358136],
'金山区': [121.255144,30.818932],
'浦东新区': [121.742177,31.083823],
'杨浦区': [121.529302,31.29835],
'奉贤区': [121.56251,30.897998],
'青浦区': [121.085191,31.124693],
'闵行区': [121.418901,31.087213],
'松江区': [121.220231, 31.015194],
//以下准备单独显示
'黄浦区': [121.483572,31.215946],
'徐汇区': [121.43752,31.179973],
'长宁区': [121.380949, 31.20737],
'静安区': [121.450659,31.270821],
'普陀区': [121.392058,31.257885],
'虹口区': [121.485443,31.276649],
};
var colors = [
["#1DE9B6", "#F46E36", "#04B9FF", "#5DBD32", "#FFC809", "#6E7074", "#546570", "#C4CCD3"],
["#37A2DA", "#67E0E3", "#32C5E9", "#9FE6B8", "#FFDB5C", "#FF9F7F", "#FB7293", "#E062AE", "#E690D1", "#E7BCF3", "#9D96F5", "#8378EA", "#C4CCD3", "#FB95D5", "#BDA29A", "#6E7074"],
["#DD6B66", "#759AA0", "#E69D87", "#8DC1A9", "#EA7E53", "#EEDD78", "#73A373", "#73B9BC", "#7289AB", "#91CA8C", "#F49F42"],
];
var colorIndex = 1;
$(function () {
});
</script>