Compare commits

..

No commits in common. "3fae04a5177f0a6242d8b1d53700b9fd59746805" and "48f884f6784f56b135842af9bacefbe7b49fc9af" have entirely different histories.

2 changed files with 11 additions and 25 deletions

View File

@ -178,8 +178,7 @@ const createCustomOverlay = (polygon) => {
content.style.flexDirection = "column";
content.style.alignItems = "center";
content.style.zIndex = BMapGL.Overlay.getZIndex(this.point.lat);
content.style.height = "30px";
content.style.width = "30px";
var div = document.createElement("div");
div.style.color = "#333";
div.style.padding = "6px 8px";

View File

@ -1074,14 +1074,12 @@ const pagination = reactive({
});
//------------------------------------------------
//
const totalType = ref(2);
const initMap = () => {
map = new BMapGL.Map("map", { minZoom: 8, maxZoom: 20 });
let type = tools.data.get("type");
if (type == 1) {
totalType.value = 1;
} else {
totalType.value = 2;
if(type==1){
}else{
map.setMapType(BMAP_SATELLITE_MAP);
}
map.enableScrollWheelZoom(true);
@ -2546,7 +2544,7 @@ const getDataBqs3 = async (jd, cs, bq) => {
DGcreateCs(item, index);
});
} else {
console.log(666666, cs_dd_arr.value);
console.log(666666,cs_dd_arr.value);
cs_dd_arr.value.map((item, index) => {
DGcreateCs2(item, index);
});
@ -3351,14 +3349,8 @@ const createCustomOverlay = (polygon, indexx) => {
const addFwqCs = () => {
fwq_dk.value.length = 0;
fwq_jzdk.value.map((item, index) => {
// let num = index % 9;
let num = index % 9;
let fillColor = "#ffffff";
if (totalType.value == 1) {
fillColor = "#7d7c7c";
} else {
fillColor = "#ffffff";
}
let points = [];
item.point[0].map((p) => points.push(new BMapGL.Point(...p)));
if (points.length) {
@ -3368,7 +3360,7 @@ const addFwqCs = () => {
strokeWeight: 2,
strokeOpacity: 0.8,
fillColor: fillColor,
fillOpacity: 0.7,
fillOpacity: 0.6,
name: item.name,
});
map.addOverlay(fwq_dk.value[index]);
@ -3597,12 +3589,6 @@ const isclick = ref("");
const addPolygonCounty = () => {
map.clearOverlays();
let fillColor = "#ffffff";
if (totalType.value == 1) {
fillColor = "#7d7c7c";
} else {
fillColor = "#ffffff";
}
mapTownDataDK.map((item) => {
// item.leg = 0;
//
@ -3678,7 +3664,8 @@ const addPolygonCounty = () => {
} else {
setTimeout(() => {
title_jd.value = item.name;
}, 1000);
},1000)
}
}
});
@ -3887,8 +3874,8 @@ const addPolygonCountyCs = () => {
if (drawing.value) {
return;
}
if (!title_jd.value) {
return;
if(!title_jd.value){
return
}
loadingss.value = true;
cs_dd_arr.value = [];