Merge branch 'main' of git.zdool.com:xs/ggfwjsc
This commit is contained in:
commit
001ecb89ba
Binary file not shown.
Before Width: | Height: | Size: 5.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 4.3 KiB |
|
@ -6,7 +6,8 @@
|
||||||
<div class="lyx">
|
<div class="lyx">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<div class="title_name">
|
<div class="title_name">
|
||||||
<span @click="csh()">龙游县</span>{{ title_choose }}
|
<span @click="csh()">龙游县</span>
|
||||||
|
<span>{{ title_choose }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="title_line"></div>
|
<div class="title_line"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -79,6 +80,7 @@ import {
|
||||||
watch,
|
watch,
|
||||||
nextTick,
|
nextTick,
|
||||||
} from "vue";
|
} from "vue";
|
||||||
|
import http from "@/utils/request.js";
|
||||||
import mapTown from "@/assets/json/ly.json";
|
import mapTown from "@/assets/json/ly.json";
|
||||||
import xkz from "@/assets/json/xkz.json";
|
import xkz from "@/assets/json/xkz.json";
|
||||||
import j0 from "@/assets/images/map/j0.png";
|
import j0 from "@/assets/images/map/j0.png";
|
||||||
|
@ -92,8 +94,6 @@ import j7 from "@/assets/images/map/j7.png";
|
||||||
import j8 from "@/assets/images/map/j8.png";
|
import j8 from "@/assets/images/map/j8.png";
|
||||||
import j9 from "@/assets/images/map/j9.png";
|
import j9 from "@/assets/images/map/j9.png";
|
||||||
import j10 from "@/assets/images/map/j10.png";
|
import j10 from "@/assets/images/map/j10.png";
|
||||||
import m1 from "@/assets/images/map/m1.png";
|
|
||||||
import m2 from "@/assets/images/map/m2.png";
|
|
||||||
import dwd from "@/assets/images/map/dwd.png";
|
import dwd from "@/assets/images/map/dwd.png";
|
||||||
import fwqbg1 from "@/assets/images/map/qlv.png";
|
import fwqbg1 from "@/assets/images/map/qlv.png";
|
||||||
import fwqbg2 from "@/assets/images/map/qlan.png";
|
import fwqbg2 from "@/assets/images/map/qlan.png";
|
||||||
|
@ -108,8 +108,8 @@ import b4 from "@/assets/images/map/b4.png";
|
||||||
import b5 from "@/assets/images/map/b5.png";
|
import b5 from "@/assets/images/map/b5.png";
|
||||||
import b6 from "@/assets/images/map/b6.png";
|
import b6 from "@/assets/images/map/b6.png";
|
||||||
import xcbg from "@/assets/images/map/xcbg.png";
|
import xcbg from "@/assets/images/map/xcbg.png";
|
||||||
import http from "@/utils/request.js";
|
|
||||||
import AED from "@/assets/images/map/AED.png";
|
import AED from "@/assets/images/map/AED.png";
|
||||||
|
|
||||||
//删除(存放渲染的地块及图标)
|
//删除(存放渲染的地块及图标)
|
||||||
const jdm_arr = ref([]);
|
const jdm_arr = ref([]);
|
||||||
const jdm_number_arr = ref([]);
|
const jdm_number_arr = ref([]);
|
||||||
|
@ -193,6 +193,7 @@ const tsbq_id_total = ref([
|
||||||
]);
|
]);
|
||||||
//点击龙游县初始化
|
//点击龙游县初始化
|
||||||
const csh = () => {
|
const csh = () => {
|
||||||
|
// console.log(222, item.name);
|
||||||
xuanzhongCs.value = [];
|
xuanzhongCs.value = [];
|
||||||
sfdd.value = false;
|
sfdd.value = false;
|
||||||
title_choose.value = "";
|
title_choose.value = "";
|
||||||
|
@ -236,6 +237,7 @@ const csh = () => {
|
||||||
const chooseCsList = ref([]);
|
const chooseCsList = ref([]);
|
||||||
const unChooseList = ref([]);
|
const unChooseList = ref([]);
|
||||||
const sqname = ref();
|
const sqname = ref();
|
||||||
|
const townName = ref();
|
||||||
//中心点坐标
|
//中心点坐标
|
||||||
const center_now = ref([]);
|
const center_now = ref([]);
|
||||||
const center_center = ref([119.178783, 29.034583]);
|
const center_center = ref([119.178783, 29.034583]);
|
||||||
|
@ -413,16 +415,43 @@ const markera = (e) => {
|
||||||
var marker = new BMapGL.Marker(new BMapGL.Point(e.latlng.lng, e.latlng.lat), {
|
var marker = new BMapGL.Marker(new BMapGL.Point(e.latlng.lng, e.latlng.lat), {
|
||||||
icon: icons,
|
icon: icons,
|
||||||
});
|
});
|
||||||
|
|
||||||
// 将新标记添加到地图中并更新当前标记引用
|
// 将新标记添加到地图中并更新当前标记引用
|
||||||
map.addOverlay(marker);
|
map.addOverlay(marker);
|
||||||
currentMarker = marker;
|
currentMarker = marker;
|
||||||
};
|
};
|
||||||
const BMAP = () => {
|
const BMAP = () => {
|
||||||
// 添加鼠标点击事件监听器
|
// 添加鼠标点击事件监听器
|
||||||
|
|
||||||
map.addEventListener("click", markera);
|
map.addEventListener("click", markera);
|
||||||
};
|
};
|
||||||
|
// 添加服务圈
|
||||||
|
var circle;
|
||||||
|
const drawACircle = (v) => {
|
||||||
|
if (!circle) {
|
||||||
|
var point = new BMapGL.Point(119.184803, 28.853725);
|
||||||
|
circle = new BMapGL.Circle(point, 900, {
|
||||||
|
strokeColor: "yellow",
|
||||||
|
strokeWeight: 2,
|
||||||
|
|
||||||
|
strokeOpacity: 0.8,
|
||||||
|
fillOpacity: 0.1,
|
||||||
|
// fillColor: "yellow",
|
||||||
|
strokeStyle: "dashed",
|
||||||
|
zIndex: 99,
|
||||||
|
});
|
||||||
|
map.addOverlay(circle);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (v === "hide") {
|
||||||
|
circle.hide();
|
||||||
|
} else {
|
||||||
|
circle.show();
|
||||||
|
map.addOverlay(circle);
|
||||||
|
map.setViewport({
|
||||||
|
center: new BMapGL.Point(119.184803, 28.853725),
|
||||||
|
zoom: 14,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const initMap = () => {
|
const initMap = () => {
|
||||||
map = new BMapGL.Map("map", { minZoom: 11, maxZoom: 20 });
|
map = new BMapGL.Map("map", { minZoom: 11, maxZoom: 20 });
|
||||||
|
@ -479,8 +508,8 @@ const addPolygonCounty = () => {
|
||||||
|
|
||||||
map.addOverlay(polygon);
|
map.addOverlay(polygon);
|
||||||
polygon.addEventListener("click", () => {
|
polygon.addEventListener("click", () => {
|
||||||
// console.log(11111, item.name);
|
townName.value = item.name;
|
||||||
|
console.log(11111, item.name, townName.value);
|
||||||
// if(item.name !== "溪口镇"){
|
// if(item.name !== "溪口镇"){
|
||||||
// jrcs.value=false;
|
// jrcs.value=false;
|
||||||
// console.log( jrcs.value,'000');
|
// console.log( jrcs.value,'000');
|
||||||
|
@ -650,6 +679,7 @@ const addPolygonCountyCs = () => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
title_choose.value = title_choose.value + `>${item.name}`;
|
title_choose.value = title_choose.value + `>${item.name}`;
|
||||||
|
console.log(item.name);
|
||||||
cs_qk_arr.value.forEach((item, index) => {
|
cs_qk_arr.value.forEach((item, index) => {
|
||||||
map.removeOverlay(cs_qk_arr.value[index]);
|
map.removeOverlay(cs_qk_arr.value[index]);
|
||||||
});
|
});
|
||||||
|
@ -1165,12 +1195,16 @@ const DGcreateCs2 = (polygon, indexx) => {
|
||||||
};
|
};
|
||||||
//创建公共服务圈
|
//创建公共服务圈
|
||||||
const addggfwq = () => {
|
const addggfwq = () => {
|
||||||
|
// if (!fwqList || !fwqList.value) {
|
||||||
fwqList.value.map((item, index) => {
|
fwqList.value.map((item, index) => {
|
||||||
createCustomOverlay(item, index);
|
createCustomOverlay(item, index);
|
||||||
});
|
});
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
};
|
};
|
||||||
// 添加公共服务圈的图标
|
// 添加公共服务圈的图标
|
||||||
const createCustomOverlay = (polygon, indexx) => {
|
const createCustomOverlay = (polygon, indexx) => {
|
||||||
|
drawACircle();
|
||||||
function createLabelDOM() {
|
function createLabelDOM() {
|
||||||
var content = document.createElement("div");
|
var content = document.createElement("div");
|
||||||
content.style.display = "flex";
|
content.style.display = "flex";
|
||||||
|
@ -1332,27 +1366,33 @@ const changebq = (id) => {
|
||||||
}
|
}
|
||||||
// choose.value.person = id;
|
// choose.value.person = id;
|
||||||
};
|
};
|
||||||
|
//基本公共服务圈点击
|
||||||
const changeFwq = (id, list, center) => {
|
const changeFwq = (id, list, center) => {
|
||||||
if (choose.value.fwq == id) {
|
if (choose.value.fwq == id) {
|
||||||
// chooseArr.value = chooseArr.value.filter((item) => item !== "fwq");
|
// chooseArr.value = chooseArr.value.filter((item) => item !== "fwq");
|
||||||
choose.value.fwq = 9999;
|
choose.value.fwq = 9999;
|
||||||
// removeAllPolygon("fwq");
|
console.log(11);
|
||||||
|
csh();
|
||||||
|
addPolygonCounty();
|
||||||
|
setTimeout(() => {
|
||||||
|
drawACircle("hide");
|
||||||
|
}, 500);
|
||||||
|
// 清空地图上所有的覆盖物
|
||||||
fwq_list_arr.value.forEach((item, index) => {
|
fwq_list_arr.value.forEach((item, index) => {
|
||||||
map.removeOverlay(fwq_list_arr.value[index]);
|
map.removeOverlay(fwq_list_arr.value[index]);
|
||||||
});
|
});
|
||||||
// xuanran();
|
|
||||||
} else {
|
} else {
|
||||||
// chooseArr.value.push("fwq");
|
|
||||||
choose.value.fwq = id;
|
choose.value.fwq = id;
|
||||||
fwqList.value = list;
|
fwqList.value = list;
|
||||||
// removeAllPolygon("fwq");
|
// 清空地图上所有的覆盖物
|
||||||
addggfwq();
|
console.log(22);
|
||||||
// xuanran();
|
map.clearOverlays();
|
||||||
setTimeout(() => {
|
|
||||||
goMapCenter(center, 17);
|
|
||||||
}, 500);
|
|
||||||
|
|
||||||
// addggfwq()
|
setTimeout(() => {
|
||||||
|
// drawACircle();
|
||||||
|
addggfwq();
|
||||||
|
goMapCenter(center, 16);
|
||||||
|
}, 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
// choose.value.fwq = id;
|
// choose.value.fwq = id;
|
||||||
|
@ -1363,6 +1403,7 @@ const changeFwq = (id, list, center) => {
|
||||||
// createCustomOverlay(item);
|
// createCustomOverlay(item);
|
||||||
// });
|
// });
|
||||||
};
|
};
|
||||||
|
|
||||||
const changeys = (id) => {
|
const changeys = (id) => {
|
||||||
choose.value.yaosu = id;
|
choose.value.yaosu = id;
|
||||||
};
|
};
|
||||||
|
@ -1526,7 +1567,6 @@ const tsbqTotal = ref([
|
||||||
]);
|
]);
|
||||||
|
|
||||||
//基本公共服务圈
|
//基本公共服务圈
|
||||||
|
|
||||||
const jbfwqTotal = ref([
|
const jbfwqTotal = ref([
|
||||||
{
|
{
|
||||||
id: 0,
|
id: 0,
|
||||||
|
@ -2421,6 +2461,25 @@ const reset_font = () => {
|
||||||
"scale(" + width / 1920 + "," + height / 1080 + ")";
|
"scale(" + width / 1920 + "," + height / 1080 + ")";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
// function initializeMap() {
|
||||||
|
// map = new BMapGL.Map("allmap");
|
||||||
|
// var point = new BMapGL.Point(119.175728, 28.846981);
|
||||||
|
// map.centerAndZoom(point, 16);
|
||||||
|
// map.enableScrollWheelZoom(true);
|
||||||
|
|
||||||
|
// // Initialize circle but don't add it to map yet
|
||||||
|
// circle = new BMapGL.Circle(point, 900, {
|
||||||
|
// strokeColor: "yellow",
|
||||||
|
// strokeWeight: 2,
|
||||||
|
// strokeOpacity: 0.8,
|
||||||
|
// fillOpacity: 0.1,
|
||||||
|
// fillColor: "yellow",
|
||||||
|
// strokeStyle: "dashed",
|
||||||
|
// zIndex: 99,
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
|
||||||
|
// window.onload = initializeMap;
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
reset_font();
|
reset_font();
|
||||||
initMap();
|
initMap();
|
||||||
|
@ -2774,6 +2833,7 @@ onMounted(() => {
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
.title_name {
|
.title_name {
|
||||||
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
font-family: YouSheBiaoTiHei;
|
font-family: YouSheBiaoTiHei;
|
||||||
font-size: 34px;
|
font-size: 34px;
|
||||||
|
|
Loading…
Reference in New Issue