This commit is contained in:
parent
7753949535
commit
94aa9bf1c5
13
src/api.js
13
src/api.js
|
@ -59,3 +59,16 @@ export function landListApi(params) {
|
||||||
export function productListApi(params) {
|
export function productListApi(params) {
|
||||||
return instacne.get('/api/dataview.land/productList', { params })
|
return instacne.get('/api/dataview.land/productList', { params })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function areaPlantTypeCountApi(params) {
|
||||||
|
return instacne.get('/api/dataview.land/areaPlantTypeCount', { params })
|
||||||
|
}
|
||||||
|
export function monitorInfoApi(params) {
|
||||||
|
return instacne.get('/api/dataview.land/monitorInfo', { params })
|
||||||
|
}
|
||||||
|
|
||||||
|
export function deviceCountLandApi(params) {
|
||||||
|
return instacne.get('/api/dataview.land/deviceCount', { params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// /api/dataview.land/deviceCount?areaCode=510521&streetCode=510521100&land_id=18
|
|
@ -2,11 +2,8 @@
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
<div style="width: 45vw;height: 50vh;" id="chart2"></div>
|
<div style="width: 45vw;height: 50vh;" id="chart2"></div>
|
||||||
<!-- <img src="/static/index/lx.png" class="img4" alt=""> -->
|
|
||||||
</div>
|
</div>
|
||||||
<!-- <div style="width: 45vw;height: 50vh;" id="myChart"></div> -->
|
|
||||||
|
|
||||||
<!-- <img src="/static/index/SC.png" id="img" style="width: 45vw;height: 50vh;" alt=""> -->
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
||||||
|
@ -41,29 +38,22 @@
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from "vue"
|
import { ref, onMounted } from "vue"
|
||||||
|
|
||||||
import * as echarts from 'echarts';
|
import * as echarts from 'echarts';
|
||||||
import "echarts-gl"
|
import "echarts-gl"
|
||||||
|
import geoJson from "/static/jsonData/luxian_geo.js"
|
||||||
import geoJson from "/static/jsonData/xuantan.js"
|
import { useRouter } from "vue-router"
|
||||||
import {useRouter} from "vue-router"
|
const router = useRouter()
|
||||||
|
const icon = "https:\/\/ceshi-worker-task.lihaink.cn\/uploads\/images\/20231204\/202312041608529c9e21252.png"
|
||||||
|
const lx = "https:\/\/ceshi-worker-task.lihaink.cn\/uploads\/images\/20231205\/20231205092709cfe148712.png"
|
||||||
const router=useRouter()
|
|
||||||
const icon = "https:\/\/ceshi-worker-task.lihaink.cn\/uploads\/images\/20231204\/202312041608529c9e21252.png"
|
|
||||||
const lx="https:\/\/ceshi-worker-task.lihaink.cn\/uploads\/images\/20231205\/20231205092709cfe148712.png"
|
|
||||||
|
|
||||||
const pointerFn = () => {
|
const pointerFn = () => {
|
||||||
|
|
||||||
// console.log()
|
|
||||||
let list = []
|
let list = []
|
||||||
geoJson.center.forEach((item, index) => {
|
geoJson.center.forEach((item, index) => {
|
||||||
list.push({
|
list.push({
|
||||||
coord: item,
|
coord: item,
|
||||||
symbol: index==geoJson.center.length-1?('image://'+lx): ('image://' + icon),// 自定义图片路径
|
symbol: index == geoJson.center.length - 1 ? ('image://' + lx) : ('image://' + icon),// 自定义图片路径
|
||||||
symbolSize: [100, 30], // 图片大小
|
symbolSize: [100, 30], // 图片大小
|
||||||
symbolOffset: ['50%', '-50%'],
|
symbolOffset: ['50%', '-50%'],
|
||||||
value: geoJson.features[index]?.properties.name||'泸县',
|
value: geoJson.features[index]?.properties.name || '泸县',
|
||||||
animation: true,
|
animation: true,
|
||||||
label: {
|
label: {
|
||||||
show: true,
|
show: true,
|
||||||
|
@ -74,230 +64,226 @@ const pointerFn = () => {
|
||||||
})
|
})
|
||||||
return list
|
return list
|
||||||
}
|
}
|
||||||
// pointerFn()
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
var mapName = 'lz';
|
|
||||||
const myChart = document.getElementById("chart2")
|
|
||||||
/*获取地图数据*/
|
|
||||||
let option = {
|
|
||||||
geo: [
|
|
||||||
|
|
||||||
|
|
||||||
{
|
var mapName = 'lz';
|
||||||
type: "map",
|
const myChart = document.getElementById("chart2")
|
||||||
map: mapName,
|
/*获取地图数据*/
|
||||||
aspectScale: 1,
|
let option = {
|
||||||
zoom: 1.2,
|
geo: [
|
||||||
layoutCenter: ["50%", "51%"],
|
|
||||||
layoutSize: "110%",
|
|
||||||
roam: false,
|
|
||||||
label:{
|
|
||||||
emphasis:{
|
|
||||||
show:false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
show: true,
|
|
||||||
map: mapName,
|
|
||||||
zoom: 1.2,
|
|
||||||
aspectScale: 1,
|
|
||||||
roam: false,
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
areaColor: 'transparent',
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1.2,
|
||||||
|
layoutCenter: ["50%", "51%"],
|
||||||
|
layoutSize: "110%",
|
||||||
|
roam: false,
|
||||||
|
label: {
|
||||||
|
emphasis: {
|
||||||
|
show: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
show: true,
|
||||||
|
map: mapName,
|
||||||
|
zoom: 1.2,
|
||||||
|
aspectScale: 1,
|
||||||
|
roam: false,
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
areaColor: 'transparent',
|
||||||
|
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
|
||||||
|
areaColor: {
|
||||||
|
type: 'radial', // linear 线性渐变 radial径向渐变
|
||||||
|
x: 0.5, // 0.5为正中心,如果小于渐变中心靠左
|
||||||
|
y: 0.5, // 0.5为正中心,如果小于渐变中心靠上
|
||||||
|
r: 1,
|
||||||
|
colorStops: [
|
||||||
|
{
|
||||||
|
offset: 0, color: '#A46759' // 0% 处的颜色
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 0.1, color: '#A46759' // 0% 处的颜色
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
offset: 1, color: '#FFB821' // 100% 处的颜色
|
||||||
|
}],
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// borderWidth: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -1,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1.2,
|
||||||
|
layoutCenter: ["50%", "51%"],
|
||||||
|
layoutSize: "110%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "rgba(17, 149, 216,0.6)",
|
||||||
|
borderColor: "#5AD0E0",
|
||||||
|
shadowColor: "rgba(172, 122, 255,0.5)",
|
||||||
|
shadowOffsetY: 5,
|
||||||
|
shadowBlur: 15,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -1,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1.2,
|
||||||
|
layoutCenter: ["50%", "52%"],
|
||||||
|
layoutSize: "110%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "rgba(17, 149, 216,0.6)",
|
||||||
|
borderColor: "#5AD0E0",
|
||||||
|
shadowColor: "rgba(172, 122, 255,0.5)",
|
||||||
|
shadowOffsetY: 5,
|
||||||
|
shadowBlur: 15,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -2,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1.2,
|
||||||
|
layoutCenter: ["50%", "53%"],
|
||||||
|
layoutSize: "110%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "rgba(17, 149, 216,0.4)",
|
||||||
|
borderColor: "#5AD0E0",
|
||||||
|
shadowColor: "rgba(172, 122, 255,0.5)",
|
||||||
|
shadowOffsetY: 5,
|
||||||
|
shadowBlur: 15,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -4,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1.2,
|
||||||
|
layoutCenter: ["50%", "54%"],
|
||||||
|
layoutSize: "110%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 5,
|
||||||
|
// borderColor: "rgba(11, 43, 97,0.8)",
|
||||||
|
borderColor: "rgba(5,9,57,0.8)",
|
||||||
|
shadowColor: "rgba(29, 111, 165,0.8)",
|
||||||
|
shadowOffsetY: 15,
|
||||||
|
shadowBlur: 10,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: '资产数',
|
||||||
|
type: 'effectScatter',
|
||||||
|
coordinateSystem: 'geo',
|
||||||
|
rippleEffect: {
|
||||||
|
period: 4, //动画时间,值越小速度越快
|
||||||
|
brushType: 'fill', //波纹绘制方式 stroke, fill
|
||||||
|
scale: 12, //波纹圆环最大限制,值越大波纹越大
|
||||||
|
number: 2,
|
||||||
|
},
|
||||||
|
|
||||||
|
// 发散点的大小
|
||||||
|
symbolSize: function (val) {
|
||||||
|
return 4
|
||||||
|
// return val[2] / 10;
|
||||||
|
},
|
||||||
|
markPoint: {
|
||||||
|
data: pointerFn()
|
||||||
|
},
|
||||||
|
|
||||||
|
data: (() => {
|
||||||
|
let data = {
|
||||||
|
资产数: geoJson.center
|
||||||
|
|
||||||
|
}
|
||||||
|
let finalData = []
|
||||||
|
Object.keys(data).map((i, index) => {
|
||||||
|
let child = data[i].map((row, index) => ({
|
||||||
|
value: row,
|
||||||
|
itemStyle: {
|
||||||
|
color: index == geoJson.center.length - 1 ? '#FEB821' : '#F0733A',
|
||||||
},
|
},
|
||||||
emphasis: {
|
}))
|
||||||
|
|
||||||
areaColor: {
|
finalData = [...finalData, ...child]
|
||||||
type: 'radial', // linear 线性渐变 radial径向渐变
|
})
|
||||||
x: 0.5, // 0.5为正中心,如果小于渐变中心靠左
|
return finalData
|
||||||
y: 0.5, // 0.5为正中心,如果小于渐变中心靠上
|
})(),
|
||||||
r: 1,
|
},
|
||||||
colorStops: [
|
],
|
||||||
{
|
};
|
||||||
offset: 0, color: '#A46759' // 0% 处的颜色
|
|
||||||
},
|
|
||||||
{
|
|
||||||
offset: 0.1, color: '#A46759' // 0% 处的颜色
|
|
||||||
},
|
|
||||||
|
|
||||||
|
document.getElementById("chart2").removeAttribute('_echarts_instance_');
|
||||||
|
|
||||||
{
|
echarts.registerMap(mapName, geoJson)
|
||||||
offset: 1, color: '#FFB821' // 100% 处的颜色
|
const bg = echarts.init(myChart)
|
||||||
}],
|
bg.setOption(option);
|
||||||
|
|
||||||
}
|
bg.on('click', function (params) {
|
||||||
|
|
||||||
|
|
||||||
// borderWidth: 0
|
|
||||||
}
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
type: "map",
|
|
||||||
map: mapName,
|
|
||||||
zlevel: -1,
|
|
||||||
aspectScale: 1,
|
|
||||||
zoom: 1.2,
|
|
||||||
layoutCenter: ["50%", "51%"],
|
|
||||||
layoutSize: "110%",
|
|
||||||
roam: false,
|
|
||||||
silent: true,
|
|
||||||
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
borderWidth: 1,
|
|
||||||
borderColor: "rgba(17, 149, 216,0.6)",
|
|
||||||
borderColor: "#5AD0E0",
|
|
||||||
shadowColor: "rgba(172, 122, 255,0.5)",
|
|
||||||
shadowOffsetY: 5,
|
|
||||||
shadowBlur: 15,
|
|
||||||
areaColor: "rgba(5,21,35,0.1)",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
{
|
|
||||||
type: "map",
|
|
||||||
map: mapName,
|
|
||||||
zlevel: -1,
|
|
||||||
aspectScale: 1,
|
|
||||||
zoom: 1.2,
|
|
||||||
layoutCenter: ["50%", "52%"],
|
|
||||||
layoutSize: "110%",
|
|
||||||
roam: false,
|
|
||||||
silent: true,
|
|
||||||
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
borderWidth: 1,
|
|
||||||
borderColor: "rgba(17, 149, 216,0.6)",
|
|
||||||
borderColor: "#5AD0E0",
|
|
||||||
shadowColor: "rgba(172, 122, 255,0.5)",
|
|
||||||
shadowOffsetY: 5,
|
|
||||||
shadowBlur: 15,
|
|
||||||
areaColor: "rgba(5,21,35,0.1)",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
{
|
|
||||||
type: "map",
|
|
||||||
map: mapName,
|
|
||||||
zlevel: -2,
|
|
||||||
aspectScale: 1,
|
|
||||||
zoom: 1.2,
|
|
||||||
layoutCenter: ["50%", "53%"],
|
|
||||||
layoutSize: "110%",
|
|
||||||
roam: false,
|
|
||||||
silent: true,
|
|
||||||
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
borderWidth: 1,
|
|
||||||
borderColor: "rgba(17, 149, 216,0.4)",
|
|
||||||
borderColor: "#5AD0E0",
|
|
||||||
shadowColor: "rgba(172, 122, 255,0.5)",
|
|
||||||
shadowOffsetY: 5,
|
|
||||||
shadowBlur: 15,
|
|
||||||
areaColor: "rgba(5,21,35,0.1)",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
type: "map",
|
|
||||||
map: mapName,
|
|
||||||
zlevel: -4,
|
|
||||||
aspectScale: 1,
|
|
||||||
zoom: 1.2,
|
|
||||||
layoutCenter: ["50%", "54%"],
|
|
||||||
layoutSize: "110%",
|
|
||||||
roam: false,
|
|
||||||
silent: true,
|
|
||||||
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
borderWidth: 5,
|
|
||||||
// borderColor: "rgba(11, 43, 97,0.8)",
|
|
||||||
borderColor: "rgba(5,9,57,0.8)",
|
|
||||||
shadowColor: "rgba(29, 111, 165,0.8)",
|
|
||||||
shadowOffsetY: 15,
|
|
||||||
shadowBlur: 10,
|
|
||||||
areaColor: "rgba(5,21,35,0.1)",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
],
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
name: '资产数',
|
|
||||||
type: 'effectScatter',
|
|
||||||
coordinateSystem: 'geo',
|
|
||||||
rippleEffect: {
|
|
||||||
period: 4, //动画时间,值越小速度越快
|
|
||||||
brushType: 'fill', //波纹绘制方式 stroke, fill
|
|
||||||
scale: 12, //波纹圆环最大限制,值越大波纹越大
|
|
||||||
number: 2,
|
|
||||||
},
|
|
||||||
|
|
||||||
// 发散点的大小
|
|
||||||
symbolSize: function (val) {
|
|
||||||
return 4
|
|
||||||
// return val[2] / 10;
|
|
||||||
},
|
|
||||||
markPoint: {
|
|
||||||
data:pointerFn()
|
|
||||||
},
|
|
||||||
|
|
||||||
data: (() => {
|
|
||||||
let data = {
|
|
||||||
资产数: geoJson.center
|
|
||||||
|
|
||||||
}
|
|
||||||
let finalData = []
|
|
||||||
Object.keys(data).map((i, index) => {
|
|
||||||
let child = data[i].map((row,index) => ({
|
|
||||||
value: row,
|
|
||||||
itemStyle: {
|
|
||||||
color:index==geoJson.center.length-1?'#FEB821':'#F0733A',
|
|
||||||
},
|
|
||||||
}))
|
|
||||||
|
|
||||||
finalData = [...finalData, ...child]
|
|
||||||
})
|
|
||||||
return finalData
|
|
||||||
})(),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
echarts.registerMap(mapName, geoJson)
|
|
||||||
const bg = echarts.init(myChart)
|
|
||||||
bg.setOption(option);
|
|
||||||
|
|
||||||
bg.on('click', function (params) {
|
|
||||||
mapClick()
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const mapClick=()=>{
|
|
||||||
router.push("/detail")
|
|
||||||
}
|
|
||||||
|
|
||||||
|
router.push("/detail?town="+params.name||params.value)
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
|
@ -1,20 +1,46 @@
|
||||||
<template>
|
<template>
|
||||||
<div style="display: flex;justify-content: space-between;align-items: center;">
|
<div style="display: flex;justify-content: space-between;align-items: center;">
|
||||||
<span>种植总面积:</span>
|
<span>种植总面积: </span>
|
||||||
<div>
|
<div>
|
||||||
<span class="area-num "><span class="color-font">2</span> </span>
|
<span class="area-num " v-for="item in plantData.totalArea"><span class="color-font">{{ item }}</span> </span>
|
||||||
<span class="area-num "><span class="color-font">2</span> </span>
|
|
||||||
<span class="area-num "><span class="color-font">2</span> </span>
|
|
||||||
<span class="area-num "><span class="color-font">2</span> </span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="">种植种类:</div>
|
<div style="">种植种类:</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="lands">
|
<div class="lands">
|
||||||
<div class="land" v-for="(item, index) in 33" :key="index">地块</div>
|
<div class="land" v-for="(item, index) in plantData.plantKindList" :key="index">{{ item.kind }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {areaPlantTypeCountApi} from "@/api.js"
|
||||||
|
import {ref,reactive} from "vue"
|
||||||
|
|
||||||
|
let plantData=reactive({
|
||||||
|
totalArea:0,
|
||||||
|
plantKindList:[]
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
// api/dataview.land/areaPlantTypeCount?areaCode=510521&streetCode=510521100
|
||||||
|
areaPlantTypeCountApi(
|
||||||
|
{
|
||||||
|
areaCode:510521,
|
||||||
|
streetCode:510521100,
|
||||||
|
land_id:12
|
||||||
|
}
|
||||||
|
).then(res=>{
|
||||||
|
for (let key in res.data){
|
||||||
|
plantData[key]=res.data[key]
|
||||||
|
}
|
||||||
|
plantData.totalArea=plantData.totalArea.toString()
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.area-num {
|
.area-num {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
@ -32,11 +58,12 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
justify-content: space-between;
|
// justify-content: space-between;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
margin-top: 1vh;
|
margin-top: 1vh;
|
||||||
height: 15vh;
|
height: 15vh;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
.land {
|
.land {
|
||||||
width: 5vw;
|
width: 5vw;
|
||||||
|
@ -47,6 +74,8 @@
|
||||||
color: white;
|
color: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 3vh;
|
line-height: 3vh;
|
||||||
|
margin-right: 10px;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,20 @@
|
||||||
|
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {reactive} from "vue"
|
import { reactive } from "vue"
|
||||||
|
import { monitorInfoApi } from "@/api.js"
|
||||||
|
|
||||||
|
monitorInfoApi(
|
||||||
|
{
|
||||||
|
areaCode: 510521,
|
||||||
|
streetCode: 510521100,
|
||||||
|
land_id: 18
|
||||||
|
}
|
||||||
|
|
||||||
|
).then(res => {
|
||||||
|
console.log(res.data)
|
||||||
|
})
|
||||||
|
// /api/dataview.land/monitorInfo?areaCode=510521&streetCode=510521100&land_id=18
|
||||||
|
|
||||||
|
|
||||||
const MoistureData = reactive([
|
const MoistureData = reactive([
|
||||||
|
|
|
@ -33,7 +33,16 @@
|
||||||
import {ref,reactive,onMounted} from "vue"
|
import {ref,reactive,onMounted} from "vue"
|
||||||
import * as echarts from 'echarts';
|
import * as echarts from 'echarts';
|
||||||
import options from "@/view/option.js"
|
import options from "@/view/option.js"
|
||||||
|
import {deviceCountLandApi} from "@/api.js"
|
||||||
|
deviceCountLandApi(
|
||||||
|
{
|
||||||
|
areaCode:510521,
|
||||||
|
streetCode:510521100,
|
||||||
|
land_id:18
|
||||||
|
}
|
||||||
|
).then(res=>{
|
||||||
|
console.log(res.data)
|
||||||
|
})
|
||||||
|
|
||||||
// 图表
|
// 图表
|
||||||
const initCharts = (tag, option) => {
|
const initCharts = (tag, option) => {
|
||||||
|
|
|
@ -1,437 +1,308 @@
|
||||||
<template>
|
<template>
|
||||||
|
<div>
|
||||||
|
<div style="width: 45vw;height: 50vh;" id="farmerchart"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div style="width: 45vw;height: 50vh;" id="chart2">
|
</template>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<!-- <img src="/static/index/SC.png" id="img" style="width: 45vw;height: 50vh;" alt=""> -->
|
|
||||||
</template>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@keyframes spin {
|
@keyframes spin {
|
||||||
0% {
|
0% {
|
||||||
transform: rotateY(0deg);
|
transform: rotateY(0deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
transform: rotateY(360deg);
|
transform: rotateY(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.img4 {
|
||||||
|
top: 19.5vh;
|
||||||
|
left: 33.3vw;
|
||||||
|
height: 44vh;
|
||||||
|
width: 33.6vw;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
#farmerchart {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 9;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted } from "vue"
|
||||||
|
import * as echarts from 'echarts';
|
||||||
|
import "echarts-gl"
|
||||||
|
import geoJson from "/static/jsonData/luxian_geo.js"
|
||||||
|
import { useRoute } from "vue-router"
|
||||||
|
const deepCopy=(obj)=> {
|
||||||
|
if (typeof obj !== 'object' || obj === null) {
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
let copy = Array.isArray(obj) ? [] : {};
|
||||||
|
|
||||||
|
for (let key in obj) {
|
||||||
|
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||||
|
copy[key] = deepCopy(obj[key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.img4 {
|
return copy;
|
||||||
width: 45VW;
|
}
|
||||||
height: 50vh;
|
|
||||||
transform-origin: center center;
|
|
||||||
// transform: rotateX(45deg);
|
|
||||||
// animation: spin 2s linear infinite;
|
|
||||||
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<script setup>
|
|
||||||
import { ref, onMounted } from "vue"
|
|
||||||
import axios from "axios";
|
|
||||||
import * as echarts from 'echarts';
|
|
||||||
import "echarts-gl"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
const u = 'https:\/\/ceshi-worker-task.lihaink.cn\/uploads\/images\/20231129\/202311291816106120a4034.png'
|
|
||||||
axios.get('https://geo.datav.aliyun.com/areas_v3/bound/510000_full.json')
|
|
||||||
.then(function (response) {
|
|
||||||
let geoJson = response.data
|
|
||||||
const dot = document.getElementById('img')
|
|
||||||
var mapName = 'lz';
|
|
||||||
var geoCoordMap = {
|
|
||||||
};
|
|
||||||
|
|
||||||
let data = [
|
|
||||||
|
|
||||||
{
|
|
||||||
name: "成都市",
|
|
||||||
value: 12,
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
color: {
|
|
||||||
image: document.getElementById("img"),
|
|
||||||
repeat: 'no-repeat'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "眉山市",
|
|
||||||
value: 12,
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
color: {
|
|
||||||
image: document.getElementById("img"),
|
|
||||||
repeat: 'no-repeat'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "雅安市",
|
|
||||||
value: 12,
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
color: {
|
|
||||||
image: document.getElementById("img"),
|
|
||||||
repeat: 'no-repeat'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
]
|
|
||||||
const myChart = document.getElementById("chart2")
|
|
||||||
/*获取地图数据*/
|
|
||||||
var mapFeatures = geoJson.features;
|
|
||||||
mapFeatures.forEach(function (v) {
|
|
||||||
// 地区名称
|
|
||||||
var name = v.properties.name;
|
|
||||||
// 地区经纬度
|
|
||||||
geoCoordMap[name] = v.properties.cp;
|
|
||||||
});
|
|
||||||
// console.log(dot)
|
|
||||||
let option = {
|
|
||||||
visualMap: {
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
title: {
|
|
||||||
show: true,
|
|
||||||
|
|
||||||
// textStyle: {
|
|
||||||
// color: "#fff",
|
|
||||||
// fontFamily: "等线",
|
|
||||||
// fontSize: 18,
|
|
||||||
// },
|
|
||||||
},
|
|
||||||
tooltip: {
|
|
||||||
trigger: 'none',
|
|
||||||
formatter: function (params) {
|
|
||||||
if (typeof params.value[2] == 'undefined') {
|
|
||||||
var toolTiphtml = '';
|
|
||||||
for (var i = 0; i < toolTipData.length; i++) {
|
|
||||||
if (params.name == toolTipData[i].name) {
|
|
||||||
toolTiphtml += toolTipData[i].name + ":" + toolTipData[i].value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
console.log(toolTiphtml);
|
|
||||||
// console.log(convertData(data))
|
|
||||||
return toolTiphtml;
|
|
||||||
} else {
|
|
||||||
var toolTiphtml = '';
|
|
||||||
for (var i = 0; i < toolTipData.length; i++) {
|
|
||||||
if (params.name == toolTipData[i].name) {
|
|
||||||
toolTiphtml += toolTipData[i].name + ":" + toolTipData[i].value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
console.log(toolTiphtml);
|
|
||||||
|
|
||||||
return toolTiphtml;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
backgroundColor: "#fff",
|
|
||||||
borderColor: "#333",
|
|
||||||
padding: [5, 10],
|
|
||||||
textStyle: {
|
|
||||||
color: "#333",
|
|
||||||
fontSize: "16"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
geo: [
|
|
||||||
{
|
|
||||||
layoutSize: '100%',//大小
|
|
||||||
show: true,
|
|
||||||
map: mapName,
|
|
||||||
backgroundColor: {
|
|
||||||
color: {
|
|
||||||
image: dot, // 支持为 HTMLImageElement, HTMLCanvasElement,不支持路径字符串
|
|
||||||
repeat: 'repeat' // 是否平铺,可以是 'repeat-x', 'repeat-y', 'no-repeat'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
roam: false,
|
|
||||||
zoom: 1.2,
|
|
||||||
layoutCenter: ["50%", "50%"],
|
|
||||||
aspectScale: 1,
|
|
||||||
label: {
|
|
||||||
normal: {
|
|
||||||
show: false,
|
|
||||||
textStyle: {
|
|
||||||
color: '#fff'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
emphasis: {
|
|
||||||
show: true,
|
|
||||||
textStyle: {
|
|
||||||
color: '#fff'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
itemStyle: {
|
|
||||||
areaColor: {
|
|
||||||
type: "linear",
|
|
||||||
x: 1200,
|
|
||||||
y: 0,
|
|
||||||
x2: 0,
|
|
||||||
y2: 0,
|
|
||||||
colorStops: [{
|
|
||||||
offset: 0,
|
|
||||||
color: "rgba(3,27,78,0.75)", // 0% 处的颜色
|
|
||||||
}, {
|
|
||||||
offset: 1,
|
|
||||||
color: "rgba(58,149,253,0.75)", // 50% 处的颜色
|
|
||||||
},],
|
|
||||||
global: true, // 缺省为 false
|
|
||||||
},
|
|
||||||
borderColor: "#D2F2FC",
|
|
||||||
borderWidth: 2,
|
|
||||||
shadowColor: "#8cd3ef",
|
|
||||||
shadowOffsetY: 10,
|
|
||||||
shadowBlur: 120,
|
|
||||||
},
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
// {
|
|
||||||
// type: "map",
|
|
||||||
// map: mapName,
|
|
||||||
// zlevel: -1,
|
|
||||||
// aspectScale: 1,
|
|
||||||
// zoom: 1.2,
|
|
||||||
// layoutCenter: ["50%", "51%"],
|
|
||||||
// layoutSize: "100%",
|
|
||||||
// roam: false,
|
|
||||||
// silent: true,
|
|
||||||
// regions: [
|
|
||||||
// {
|
|
||||||
// name: "南海诸岛",
|
|
||||||
// itemStyle: {
|
|
||||||
// // 隐藏地图
|
|
||||||
// normal: {
|
|
||||||
// opacity: 0, // 为 0 时不绘制该图形
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// label: {
|
|
||||||
// show: false // 隐藏文字
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// ],
|
|
||||||
// itemStyle: {
|
|
||||||
// normal: {
|
|
||||||
// borderWidth: 1,
|
|
||||||
// borderColor: "rgba(17, 149, 216,0.6)",
|
|
||||||
// borderColor: "#5AD0E0",
|
|
||||||
// shadowColor: "rgba(172, 122, 255,0.5)",
|
|
||||||
// shadowOffsetY: 5,
|
|
||||||
// shadowBlur: 15,
|
|
||||||
// areaColor: "rgba(5,21,35,0.1)",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// type: "map",
|
|
||||||
// map: mapName,
|
|
||||||
// zlevel: -2,
|
|
||||||
// aspectScale: 1,
|
|
||||||
// zoom: 1.2,
|
|
||||||
// layoutCenter: ["50%", "52%"],
|
|
||||||
// layoutSize: "100%",
|
|
||||||
// roam: false,
|
|
||||||
// silent: true,
|
|
||||||
// regions: [
|
|
||||||
// {
|
|
||||||
// name: "南海诸岛",
|
|
||||||
// itemStyle: {
|
|
||||||
// // 隐藏地图
|
|
||||||
// normal: {
|
|
||||||
// opacity: 0, // 为 0 时不绘制该图形
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// label: {
|
|
||||||
// show: false // 隐藏文字
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// ],
|
|
||||||
// itemStyle: {
|
|
||||||
// normal: {
|
|
||||||
// borderWidth: 1,
|
|
||||||
// // borderColor: "rgba(57, 132, 188,0.4)",
|
|
||||||
// borderColor: "#1C75C8",
|
|
||||||
// shadowColor: "rgba(65, 214, 255,1)",
|
|
||||||
// shadowOffsetY: 5,
|
|
||||||
// shadowBlur: 15,
|
|
||||||
// areaColor: "transpercent",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
|
|
||||||
// {
|
|
||||||
// type: "map",
|
|
||||||
// map: mapName,
|
|
||||||
// zlevel: -3,
|
|
||||||
// aspectScale: 1,
|
|
||||||
// zoom: 1.2,
|
|
||||||
// layoutCenter: ["50%", "53%"],
|
|
||||||
// layoutSize: "101%",
|
|
||||||
// roam: false,
|
|
||||||
// silent: true,
|
|
||||||
// regions: [
|
|
||||||
// {
|
|
||||||
// name: "南海诸岛",
|
|
||||||
// itemStyle: {
|
|
||||||
// // 隐藏地图
|
|
||||||
// normal: {
|
|
||||||
// opacity: 0, // 为 0 时不绘制该图形
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// label: {
|
|
||||||
// show: false // 隐藏文字
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// ],
|
|
||||||
// itemStyle: {
|
|
||||||
// normal: {
|
|
||||||
// borderWidth: 1,
|
|
||||||
// // borderColor: "rgba(11, 43, 97,0.8)",
|
|
||||||
// borderColor: "rgba(58,149,253,0.4)",
|
|
||||||
// shadowColor: "rgba(58,149,253,1)",
|
|
||||||
// shadowOffsetY: 15,
|
|
||||||
// shadowBlur: 10,
|
|
||||||
// areaColor: "transpercent",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// type: "map",
|
|
||||||
// map: mapName,
|
|
||||||
// zlevel: -4,
|
|
||||||
// aspectScale: 1,
|
|
||||||
// zoom: 1.2,
|
|
||||||
// layoutCenter: ["50%", "54%"],
|
|
||||||
// layoutSize: "103%",
|
|
||||||
// roam: false,
|
|
||||||
// silent: true,
|
|
||||||
// regions: [
|
|
||||||
// {
|
|
||||||
// name: "南海诸岛",
|
|
||||||
// itemStyle: {
|
|
||||||
// // 隐藏地图
|
|
||||||
// normal: {
|
|
||||||
// opacity: 0, // 为 0 时不绘制该图形
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// label: {
|
|
||||||
// show: false // 隐藏文字
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// ],
|
|
||||||
// itemStyle: {
|
|
||||||
// normal: {
|
|
||||||
// borderWidth: 5,
|
|
||||||
// // borderColor: "rgba(11, 43, 97,0.8)",
|
|
||||||
// borderColor: "rgba(5,9,57,0.8)",
|
|
||||||
// shadowColor: "rgba(29, 111, 165,0.8)",
|
|
||||||
// shadowOffsetY: 15,
|
|
||||||
// shadowBlur: 10,
|
|
||||||
// areaColor: "rgba(5,21,35,0.1)",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
],
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
type: 'map',
|
|
||||||
map: mapName,
|
|
||||||
geoIndex: 0,
|
|
||||||
aspectScale: 1, //长宽比
|
|
||||||
zoom: 0.65,
|
|
||||||
showLegendSymbol: true,
|
|
||||||
roam: true,
|
|
||||||
label: {
|
|
||||||
normal: {
|
|
||||||
show: true,
|
|
||||||
textStyle: {
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: "120%"
|
|
||||||
},
|
|
||||||
},
|
|
||||||
emphasis: {
|
|
||||||
// show: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
// itemStyle: {
|
|
||||||
// normal: {
|
|
||||||
// areaColor: {
|
|
||||||
// type: "linear",
|
|
||||||
// x: 1200,
|
|
||||||
// y: 0,
|
|
||||||
// x2: 0,
|
|
||||||
// y2: 0,
|
|
||||||
// colorStops: [{
|
|
||||||
// offset: 0,
|
|
||||||
// color: "rgba(3,27,78,0.75)", // 0% 处的颜色
|
|
||||||
// }, {
|
|
||||||
// offset: 1,
|
|
||||||
// color: "rgba(58,149,253,0.75)", // 50% 处的颜色
|
|
||||||
// },],
|
|
||||||
// global: true, // 缺省为 false
|
|
||||||
// },
|
|
||||||
// borderColor: "#fff",
|
|
||||||
// borderWidth: 0.2,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
layoutCenter: ["50%", "50%"],
|
|
||||||
layoutSize: "180%",
|
|
||||||
animation: true,
|
|
||||||
markPoint: {
|
|
||||||
symbol: "none"
|
|
||||||
},
|
|
||||||
data: data,
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echarts.registerMap(mapName, geoJson)
|
|
||||||
const bg = echarts.init(myChart)
|
|
||||||
bg.setOption(option);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
|
const townJson=deepCopy(geoJson)
|
||||||
|
const route = useRoute()
|
||||||
|
townJson.features = townJson.features.filter((item) => {
|
||||||
|
return item.properties.name == route.query.town
|
||||||
|
})
|
||||||
|
const icon = "https:\/\/ceshi-worker-task.lihaink.cn\/uploads\/images\/20231204\/202312041608529c9e21252.png"
|
||||||
|
const lx = "https:\/\/ceshi-worker-task.lihaink.cn\/uploads\/images\/20231205\/20231205092709cfe148712.png"
|
||||||
|
|
||||||
|
const pointerFn = () => {
|
||||||
|
return
|
||||||
|
let list = []
|
||||||
|
geoJson.center.forEach((item, index) => {
|
||||||
|
list.push({
|
||||||
|
coord: item,
|
||||||
|
symbol: index == geoJson.center.length - 1 ? ('image://' + lx) : ('image://' + icon),// 自定义图片路径
|
||||||
|
symbolSize: [100, 30], // 图片大小
|
||||||
|
symbolOffset: ['50%', '-50%'],
|
||||||
|
value: geoJson.features[index]?.properties.name || '泸县',
|
||||||
|
animation: true,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
color: 'white',
|
||||||
|
fontSize: 14,
|
||||||
|
},
|
||||||
|
},)
|
||||||
})
|
})
|
||||||
|
return list
|
||||||
|
}
|
||||||
|
onMounted(() => {
|
||||||
|
var mapName = 'lz';
|
||||||
|
const myChart = document.getElementById("farmerchart")
|
||||||
|
/*获取地图数据*/
|
||||||
|
let option = {
|
||||||
|
geo: [
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1,
|
||||||
|
layoutCenter: ["50%", "51%"],
|
||||||
|
layoutSize: "80%",
|
||||||
|
roam: false,
|
||||||
|
label: {
|
||||||
|
emphasis: {
|
||||||
|
show: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
show: true,
|
||||||
|
map: mapName,
|
||||||
|
zoom: 1,
|
||||||
|
aspectScale: 1,
|
||||||
|
roam: false,
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
areaColor: 'transparent',
|
||||||
|
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
|
||||||
|
areaColor: {
|
||||||
|
type: 'radial', // linear 线性渐变 radial径向渐变
|
||||||
|
x: 0.5, // 0.5为正中心,如果小于渐变中心靠左
|
||||||
|
y: 0.5, // 0.5为正中心,如果小于渐变中心靠上
|
||||||
|
r: 1,
|
||||||
|
colorStops: [
|
||||||
|
{
|
||||||
|
offset: 0, color: '#A46759' // 0% 处的颜色
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 0.1, color: '#A46759' // 0% 处的颜色
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
offset: 1, color: '#FFB821' // 100% 处的颜色
|
||||||
|
}],
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// borderWidth: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -1,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1,
|
||||||
|
layoutCenter: ["50%", "51%"],
|
||||||
|
layoutSize: "81%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "rgba(17, 149, 216,0.6)",
|
||||||
|
borderColor: "#5AD0E0",
|
||||||
|
shadowColor: "rgba(172, 122, 255,0.5)",
|
||||||
|
shadowOffsetY: 5,
|
||||||
|
shadowBlur: 15,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -1,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1,
|
||||||
|
layoutCenter: ["50%", "52%"],
|
||||||
|
layoutSize: "82%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "rgba(17, 149, 216,0.6)",
|
||||||
|
borderColor: "#5AD0E0",
|
||||||
|
shadowColor: "rgba(172, 122, 255,0.5)",
|
||||||
|
shadowOffsetY: 5,
|
||||||
|
shadowBlur: 15,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -2,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1,
|
||||||
|
layoutCenter: ["50%", "53%"],
|
||||||
|
layoutSize: "83%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "rgba(17, 149, 216,0.4)",
|
||||||
|
borderColor: "#5AD0E0",
|
||||||
|
shadowColor: "rgba(172, 122, 255,0.5)",
|
||||||
|
shadowOffsetY: 5,
|
||||||
|
shadowBlur: 15,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "map",
|
||||||
|
map: mapName,
|
||||||
|
zlevel: -4,
|
||||||
|
aspectScale: 1,
|
||||||
|
zoom: 1,
|
||||||
|
layoutCenter: ["50%", "54%"],
|
||||||
|
layoutSize: "84%",
|
||||||
|
roam: false,
|
||||||
|
silent: true,
|
||||||
|
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
borderWidth: 5,
|
||||||
|
// borderColor: "rgba(11, 43, 97,0.8)",
|
||||||
|
borderColor: "rgba(5,9,57,0.8)",
|
||||||
|
shadowColor: "rgba(29, 111, 165,0.8)",
|
||||||
|
shadowOffsetY: 15,
|
||||||
|
shadowBlur: 10,
|
||||||
|
areaColor: "rgba(5,21,35,0.1)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: '资产数',
|
||||||
|
type: 'effectScatter',
|
||||||
|
coordinateSystem: 'geo',
|
||||||
|
rippleEffect: {
|
||||||
|
period: 4, //动画时间,值越小速度越快
|
||||||
|
brushType: 'fill', //波纹绘制方式 stroke, fill
|
||||||
|
scale: 12, //波纹圆环最大限制,值越大波纹越大
|
||||||
|
number: 2,
|
||||||
|
},
|
||||||
|
|
||||||
|
// 发散点的大小
|
||||||
|
symbolSize: function (val) {
|
||||||
|
return 4
|
||||||
|
// return val[2] / 10;
|
||||||
|
},
|
||||||
|
markPoint: {
|
||||||
|
data: pointerFn()
|
||||||
|
},
|
||||||
|
|
||||||
|
data: (() => {
|
||||||
|
return
|
||||||
|
let data = {
|
||||||
|
资产数: geoJson.center
|
||||||
|
|
||||||
|
}
|
||||||
|
let finalData = []
|
||||||
|
Object.keys(data).map((i, index) => {
|
||||||
|
let child = data[i].map((row, index) => ({
|
||||||
|
value: row,
|
||||||
|
itemStyle: {
|
||||||
|
color: index == geoJson.center.length - 1 ? '#FEB821' : '#F0733A',
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
|
||||||
|
finalData = [...finalData, ...child]
|
||||||
|
})
|
||||||
|
return finalData
|
||||||
|
})(),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
document.getElementById("farmerchart").removeAttribute('_echarts_instance_');
|
||||||
|
|
||||||
|
echarts.registerMap(mapName, townJson)
|
||||||
|
const bg = echarts.init(myChart)
|
||||||
|
bg.setOption(option);
|
||||||
|
|
||||||
|
bg.on('click', function (params) {
|
||||||
|
// mapClick()
|
||||||
|
console.log(params.name)
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
|
||||||
|
|
||||||
#chart2{
|
|
||||||
transform: rotateX(20deg);
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -13,8 +13,8 @@
|
||||||
</video>
|
</video>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="c">
|
<div class="center">
|
||||||
<div class="top">
|
<div class="top-c">
|
||||||
<div style="display: flex;justify-content: space-between;">
|
<div style="display: flex;justify-content: space-between;">
|
||||||
<div class=" c-top-tits"><span class="color-font" @click="router.push('/')">返回首页</span></div>
|
<div class=" c-top-tits"><span class="color-font" @click="router.push('/')">返回首页</span></div>
|
||||||
<div class=" c-top-tits"><span class="color-font">同谭政地块</span> </div>
|
<div class=" c-top-tits"><span class="color-font">同谭政地块</span> </div>
|
||||||
|
@ -84,11 +84,11 @@ const router=useRouter()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.c {
|
.center {
|
||||||
width: 49vw;
|
width: 49vw;
|
||||||
height: 93vh;
|
height: 93vh;
|
||||||
|
|
||||||
.top {
|
.top-c {
|
||||||
margin-top: 1vh;
|
margin-top: 1vh;
|
||||||
width: 49vw;
|
width: 49vw;
|
||||||
height: 61vh;
|
height: 61vh;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue