|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<Numbox class="num-box block-box" /> |
|
|
|
|
<Tabber class="tabber-box" /> |
|
|
|
|
<Norm class="block-box nomr-box" /> |
|
|
|
|
<section class="map"> |
|
|
|
|
<section class="map z-2"> |
|
|
|
|
<charts :options="mapOption" ref="mapChartRef" class="mapChart" /> |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
@ -17,13 +17,32 @@ import Weather from './weather.vue'
|
|
|
|
|
import Numbox from './numbox.vue' |
|
|
|
|
import Tabber from './tabber.vue' |
|
|
|
|
import Norm from './norm.vue' |
|
|
|
|
|
|
|
|
|
import * as echarts from 'echarts' |
|
|
|
|
let observer: Nullable<ResizeObserver> = null |
|
|
|
|
const mapWrapperRef = ref() |
|
|
|
|
|
|
|
|
|
const mapPoint = [ |
|
|
|
|
{ name: '七里河镇', value: ['41.339430', '121.261680'] }, |
|
|
|
|
{ name: '大榆树堡镇', value: ['41.523050', '121.462200'] }, |
|
|
|
|
{ name: '稍户营子镇', value: ['41.745590', '121.571260'] }, |
|
|
|
|
{ name: '九道岭镇', value: ['41.596910', '121.306600'] }, |
|
|
|
|
{ name: '高台子镇', value: ['41.701760', '121.369400'] }, |
|
|
|
|
{ name: '瓦子峪镇', value: ['41.682170', '121.534570'] }, |
|
|
|
|
{ name: '张家堡镇', value: ['41.392910', '121.442170'] }, |
|
|
|
|
{ name: '头道河镇', value: ['41.522750', '121.151930'] }, |
|
|
|
|
{ name: '留龙沟镇', value: ['41.404170', '121.05586'] }, |
|
|
|
|
{ name: '大定堡满族乡', value: ['41.403600', '121.12812'] }, |
|
|
|
|
{ name: '义州街道', value: ['41.535923', '121.238258'] }, |
|
|
|
|
{ name: '城关街道', value: ['41.535923', '121.23825'] }, |
|
|
|
|
{ name: '刘龙台镇', value: ['41.512160', '120.924230'] }, |
|
|
|
|
{ name: '头台镇', value: ['41.640424', '121.202267'] }, |
|
|
|
|
{ name: '前杨镇', value: ['41.506351', '121.222911'] }, |
|
|
|
|
{ name: '聚粮屯镇', value: ['41.512976', '121.318992'] }, |
|
|
|
|
{ name: '地藏寺满族乡', value: ['41.426387', '120.952806'] }, |
|
|
|
|
{ name: '白庙子乡', value: ['41.25', '120.22'] } |
|
|
|
|
] |
|
|
|
|
const mapChartRef = ref() |
|
|
|
|
|
|
|
|
|
const mapOption = ref({ |
|
|
|
|
const mapOption: any = ref({ |
|
|
|
|
geo: [ |
|
|
|
|
{ |
|
|
|
|
map: 'yx', |
|
|
|
@ -49,7 +68,16 @@ const mapOption = ref({
|
|
|
|
|
}, |
|
|
|
|
borderColor: '#34F6BA' |
|
|
|
|
}, |
|
|
|
|
zlevel: 0 |
|
|
|
|
zLevel: 0, |
|
|
|
|
emphasis: { |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
select: { |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
blur: { |
|
|
|
|
disabled: true |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
map: 'yx', |
|
|
|
@ -59,6 +87,9 @@ const mapOption = ref({
|
|
|
|
|
areaColor: '#002C1F', |
|
|
|
|
borderColor: 'transparent' |
|
|
|
|
}, |
|
|
|
|
emphasis: { |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
zlevel: -1 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
@ -69,6 +100,9 @@ const mapOption = ref({
|
|
|
|
|
areaColor: '#078B63', |
|
|
|
|
borderColor: 'transparent' |
|
|
|
|
}, |
|
|
|
|
emphasis: { |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
zlevel: -2 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
@ -83,20 +117,288 @@ const mapOption = ref({
|
|
|
|
|
shadowOffsetX: 0, |
|
|
|
|
shadowOffsetY: 0 |
|
|
|
|
}, |
|
|
|
|
emphasis: { |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
zlevel: -3 |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
], |
|
|
|
|
series: [ |
|
|
|
|
{ |
|
|
|
|
type: 'scatter', |
|
|
|
|
coordinateSystem: 'geo', |
|
|
|
|
geoIndex: 0, |
|
|
|
|
symbolSize: 50, |
|
|
|
|
label: { |
|
|
|
|
show: true, |
|
|
|
|
fontWeight: 'bold', |
|
|
|
|
fontSize: 14, |
|
|
|
|
fontStyle: 'italic', |
|
|
|
|
formatter: (v) => { |
|
|
|
|
return `AQI 25` |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
data: [ |
|
|
|
|
{ |
|
|
|
|
name: 'xxx', |
|
|
|
|
value: [121.59, 41.68], |
|
|
|
|
itemStyle: { |
|
|
|
|
color: { |
|
|
|
|
type: 'radial', |
|
|
|
|
x: 0.5, |
|
|
|
|
y: 0.5, |
|
|
|
|
r: 0.5, |
|
|
|
|
colorStops: [ |
|
|
|
|
{ |
|
|
|
|
offset: 0, |
|
|
|
|
color: 'rgba(239, 68, 68, .5)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 0.5, |
|
|
|
|
color: 'rgba(239, 68, 68, .3)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 1, |
|
|
|
|
color: 'rgba(239, 68, 68, 0)' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
// color:'#56CA00', |
|
|
|
|
shadowBlur: 2, |
|
|
|
|
shadowColor: 'rgba(239, 68, 68, .1)', |
|
|
|
|
shadowOffsetX: 0, |
|
|
|
|
shadowOffsetY: 0, |
|
|
|
|
opacity: 0.8 |
|
|
|
|
}, |
|
|
|
|
symbolSize: 60, |
|
|
|
|
label: { |
|
|
|
|
fontSize: 18, |
|
|
|
|
color: 'rgba(239, 68, 68, 1)' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
name: 'xxx', |
|
|
|
|
value: [121.310975, 41.5434265], |
|
|
|
|
itemStyle: { |
|
|
|
|
color: { |
|
|
|
|
type: 'radial', |
|
|
|
|
x: 0.5, |
|
|
|
|
y: 0.5, |
|
|
|
|
r: 0.5, |
|
|
|
|
colorStops: [ |
|
|
|
|
{ |
|
|
|
|
offset: 0, |
|
|
|
|
color: 'rgba(86, 202, 0, .5)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 0.5, |
|
|
|
|
color: 'rgba(86, 202, 0, .3)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 1, |
|
|
|
|
color: 'rgba(86, 202, 0, 0)' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
// color:'#56CA00', |
|
|
|
|
shadowBlur: 2, |
|
|
|
|
shadowColor: 'rgba(86, 202, 0, .1)', |
|
|
|
|
shadowOffsetX: 0, |
|
|
|
|
shadowOffsetY: 0, |
|
|
|
|
opacity: 0.8 |
|
|
|
|
}, |
|
|
|
|
label: { |
|
|
|
|
color: 'rgba(86, 202, 0, 1)' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
name: 'xxx', |
|
|
|
|
value: [121.00383704808695, 41.5434265], |
|
|
|
|
symbolSize: 100, |
|
|
|
|
itemStyle: { |
|
|
|
|
color: { |
|
|
|
|
type: 'radial', |
|
|
|
|
x: 0.5, |
|
|
|
|
y: 0.5, |
|
|
|
|
r: 0.5, |
|
|
|
|
colorStops: [ |
|
|
|
|
{ |
|
|
|
|
offset: 0, |
|
|
|
|
color: 'rgba(22, 177, 255, .5)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 0.5, |
|
|
|
|
color: 'rgba(22, 177, 255, .3)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 1, |
|
|
|
|
color: 'rgba(22, 177, 255, 0)' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
// color:'#56CA00', |
|
|
|
|
shadowBlur: 2, |
|
|
|
|
shadowColor: 'rgba(22, 177, 255, .1)', |
|
|
|
|
shadowOffsetX: 0, |
|
|
|
|
shadowOffsetY: 0, |
|
|
|
|
opacity: 0.8 |
|
|
|
|
}, |
|
|
|
|
label: { |
|
|
|
|
fontSize: 30, |
|
|
|
|
color: 'rgba(22, 177, 255, 1)' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
name: 'xxx', |
|
|
|
|
value: [121.01, 41.35], |
|
|
|
|
itemStyle: { |
|
|
|
|
color: { |
|
|
|
|
type: 'radial', |
|
|
|
|
x: 0.5, |
|
|
|
|
y: 0.5, |
|
|
|
|
r: 0.5, |
|
|
|
|
colorStops: [ |
|
|
|
|
{ |
|
|
|
|
offset: 0, |
|
|
|
|
color: 'rgba(255, 231, 0, .5)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 0.5, |
|
|
|
|
color: 'rgba(255, 231, 0, .3)' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
offset: 1, |
|
|
|
|
color: 'rgba(255, 231, 0, 0)' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
// color:'#56CA00', |
|
|
|
|
shadowBlur: 2, |
|
|
|
|
shadowColor: 'rgba(255, 231, 0, .1)', |
|
|
|
|
shadowOffsetX: 0, |
|
|
|
|
shadowOffsetY: 0, |
|
|
|
|
opacity: 0.8 |
|
|
|
|
}, |
|
|
|
|
label: { |
|
|
|
|
color: 'rgba(255, 231, 0, 1)' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
zLevel: 1 |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
xAxis: [], |
|
|
|
|
yAxis: [], |
|
|
|
|
grid: [] |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
const handlerResize = () => { |
|
|
|
|
unref(mapChartRef).resizeHandler() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const initMap = () => { |
|
|
|
|
const chartInstance = unref(mapChartRef).getChartRef() |
|
|
|
|
echarts.util.each(mapPoint, (dataItem, id) => { |
|
|
|
|
//获取对应城市的经纬度 |
|
|
|
|
const geoCoord = dataItem.value.reverse() |
|
|
|
|
//把对应城市的经纬度转换成像素值,好让柱状图展示在对应的城市上 |
|
|
|
|
const coord = chartInstance.convertToPixel('geo', geoCoord) |
|
|
|
|
const value1 = Math.floor(Math.random() * 100) |
|
|
|
|
const value2 = Math.floor(Math.random() * 100) |
|
|
|
|
const idx = `${id}` |
|
|
|
|
mapOption.value.xAxis.push({ |
|
|
|
|
id: idx, |
|
|
|
|
gridId: idx, |
|
|
|
|
type: 'category', |
|
|
|
|
zLevel: 2, |
|
|
|
|
axisLine: { |
|
|
|
|
show: false |
|
|
|
|
}, |
|
|
|
|
axisTick: { |
|
|
|
|
show: false |
|
|
|
|
}, |
|
|
|
|
axisLabel: { |
|
|
|
|
color: '#fff', |
|
|
|
|
fontSize: 10 |
|
|
|
|
}, |
|
|
|
|
data: [dataItem.name] |
|
|
|
|
}) |
|
|
|
|
//针对每个城市数据添加y轴 |
|
|
|
|
mapOption.value.yAxis.push({ |
|
|
|
|
id: idx, |
|
|
|
|
gridId: idx, |
|
|
|
|
splitLine: { |
|
|
|
|
show: false |
|
|
|
|
}, |
|
|
|
|
axisTick: { |
|
|
|
|
show: false |
|
|
|
|
}, |
|
|
|
|
axisLabel: { |
|
|
|
|
show: false |
|
|
|
|
}, |
|
|
|
|
axisLine: { |
|
|
|
|
show: false, |
|
|
|
|
lineStyle: { |
|
|
|
|
color: '#fff' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
zLevel: 2 |
|
|
|
|
}) |
|
|
|
|
mapOption.value.grid.push({ |
|
|
|
|
id: idx, |
|
|
|
|
//下面的宽高最终会体现为柱状图展示的宽高,这个要设置一下,如果不设置,整体的高度会很高而且展示的位置都是错乱的 |
|
|
|
|
width: 30, |
|
|
|
|
height: 63, |
|
|
|
|
//通过转换的像素值,最终展示柱状图的位置,按自己需要进行调整即可 |
|
|
|
|
left: coord[0] - 15, |
|
|
|
|
top: coord[1] - 55, |
|
|
|
|
zLevel: 0 |
|
|
|
|
}) |
|
|
|
|
//下面都是添加柱状图展示的数据 |
|
|
|
|
mapOption.value.series.push({ |
|
|
|
|
name: `${dataItem.name}1`, |
|
|
|
|
type: 'bar', |
|
|
|
|
coordinateSystem: 'cartesian2d', |
|
|
|
|
xAxisIndex: idx, |
|
|
|
|
yAxisIndex: idx, |
|
|
|
|
zLevel: 3, |
|
|
|
|
barWidth: 6, |
|
|
|
|
itemStyle: { |
|
|
|
|
color: '#56ca00' |
|
|
|
|
}, |
|
|
|
|
label: { |
|
|
|
|
show: true, |
|
|
|
|
position: 'top', |
|
|
|
|
color: '#fff' |
|
|
|
|
}, |
|
|
|
|
data: [value1] |
|
|
|
|
}) |
|
|
|
|
mapOption.value.series.push({ |
|
|
|
|
name: `${dataItem.name}2`, |
|
|
|
|
type: 'bar', |
|
|
|
|
coordinateSystem: 'cartesian2d', |
|
|
|
|
xAxisIndex: idx, |
|
|
|
|
yAxisIndex: idx, |
|
|
|
|
zLevel: 3, |
|
|
|
|
barWidth: 6, |
|
|
|
|
itemStyle: { |
|
|
|
|
color: '#ffe700', |
|
|
|
|
fontSize:10, |
|
|
|
|
}, |
|
|
|
|
label: { |
|
|
|
|
show: true, |
|
|
|
|
position: 'top', |
|
|
|
|
color: '#fff' |
|
|
|
|
}, |
|
|
|
|
data: [value2] |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
|
observer = new ResizeObserver(handlerResize) |
|
|
|
|
observer.observe(mapWrapperRef.value) |
|
|
|
|
initMap() |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
onUnmounted(() => { |
|
|
|
|