This commit is contained in:
parent
fd53ee78bf
commit
97c8e04edc
|
@ -385,6 +385,7 @@ const addPolygonCounty = () => {
|
|||
map.clearOverlays();
|
||||
let fillColor = "#ffffff";
|
||||
mapTownDataDK.map((item) => {
|
||||
item.leg = 0;
|
||||
//地区的坐标范围
|
||||
let points = [];
|
||||
item.point.map((p) => points.push(new BMapGL.Point(...p)));
|
||||
|
@ -397,11 +398,14 @@ const addPolygonCounty = () => {
|
|||
fillColor: fillColor,
|
||||
fillOpacity: 0.7,
|
||||
name: item.name,
|
||||
zIndex: 92,
|
||||
});
|
||||
|
||||
map.addOverlay(polygon);
|
||||
polygon.addEventListener("click", () => {
|
||||
console.log(item.name);
|
||||
if (title_choose.value.includes("溪口镇")) {
|
||||
} else {
|
||||
let jdCenter = [];
|
||||
if (item.name == "溪口镇") {
|
||||
if (!title_choose.value.includes("溪口镇")) {
|
||||
|
@ -417,7 +421,7 @@ const addPolygonCounty = () => {
|
|||
addCs();
|
||||
goMapCenter(jdCenter, 13);
|
||||
} else {
|
||||
title_choose.value='龙游县'
|
||||
title_choose.value = "龙游县";
|
||||
cs_qk_arr.value.forEach((item, index) => {
|
||||
map.removeOverlay(cs_qk_arr.value[index]);
|
||||
});
|
||||
|
@ -425,6 +429,7 @@ const addPolygonCounty = () => {
|
|||
map.removeOverlay(cs_name_arr.value[index]);
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
@ -484,8 +489,35 @@ const addPolygonCountyCs = () => {
|
|||
fillColor: fillColor,
|
||||
fillOpacity: 0.7,
|
||||
name: item.name,
|
||||
zIndex: 99,
|
||||
});
|
||||
map.addOverlay(cs_qk_arr.value[index]);
|
||||
cs_qk_arr.value[index].addEventListener("click", () => {
|
||||
console.log(111);
|
||||
// let jdCenter = [];
|
||||
// if (item.name == "溪口镇") {
|
||||
// if (!title_choose.value.includes("溪口镇")) {
|
||||
// title_choose.value = title_choose.value + `>${item.name}`;
|
||||
// }
|
||||
// loadCs();
|
||||
// addPolygonCountyCs();
|
||||
// mapTownCount.map((item) => {
|
||||
// if (item.name == "溪口镇") {
|
||||
// jdCenter = item.center;
|
||||
// }
|
||||
// });
|
||||
// addCs();
|
||||
// goMapCenter(jdCenter, 13);
|
||||
// } else {
|
||||
// title_choose.value = "龙游县";
|
||||
// cs_qk_arr.value.forEach((item, index) => {
|
||||
// map.removeOverlay(cs_qk_arr.value[index]);
|
||||
// });
|
||||
// cs_name_arr.value.forEach((item, index) => {
|
||||
// map.removeOverlay(cs_name_arr.value[index]);
|
||||
// });
|
||||
// }
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
@ -935,6 +967,12 @@ const changeRs = (id) => {
|
|||
cs_name_arr.value.length = 0;
|
||||
addCs2();
|
||||
}
|
||||
if (jdm_number_arr.value?.length) {
|
||||
jdm_number_arr.value.forEach((item, index) => {
|
||||
map.removeOverlay(jdm_number_arr.value[index]);
|
||||
});
|
||||
jdm_number_arr.value.length = 0;
|
||||
}
|
||||
addJd2();
|
||||
// removeAllPolygon("person");
|
||||
// xuanran();
|
||||
|
|
Loading…
Reference in New Issue