This commit is contained in:
commit
fa3dfec58e
|
@ -7,7 +7,8 @@ import { onMounted, reactive, nextTick, ref, defineProps, watch } from "vue";
|
|||
// import mapTown from '@/assets/json/330225.json'
|
||||
import m1 from "@/assets/images/map/m1.png";
|
||||
import m2 from "@/assets/images/map/m2.png";
|
||||
import mapTown from '@/assets/json/ly.json'
|
||||
import mapTown from '@/assets/json/ly.json';
|
||||
import tools from "@/utils/tools";
|
||||
let map = null;
|
||||
// 点位
|
||||
const mapTownCount = reactive([
|
||||
|
@ -93,9 +94,15 @@ const mapTownDataDK = reactive([]);
|
|||
const initMap = () => {
|
||||
map = new BMapGL.Map("map", { minZoom: 11, maxZoom: 16 });
|
||||
map.enableScrollWheelZoom(true);
|
||||
map.setMapStyleV2({
|
||||
let type = tools.data.get("type");
|
||||
if(type==1){
|
||||
|
||||
}else{
|
||||
map.setMapStyleV2({
|
||||
styleId: "d0acde891abd157741b71e12670ee2e6",
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
goMapCenter([119.123203, 29.098722], 12);
|
||||
loadTown();
|
||||
|
|
|
@ -50,9 +50,8 @@ data.list.forEach((item) => {
|
|||
legendData.push(item.name);
|
||||
});
|
||||
data.list.push({
|
||||
name: "总数",
|
||||
name: "",
|
||||
value: sum,
|
||||
tooltip: { formatter: () => "" },
|
||||
itemStyle: { normal: { color: "rgba(0, 0, 0, 0)" } },
|
||||
});
|
||||
const colorList = [
|
||||
|
@ -149,9 +148,9 @@ const getOption = () => {
|
|||
var arr = [
|
||||
"{a|" + params + "}",
|
||||
"{b|" +num + "人}",
|
||||
"{c|" + value + "% }",
|
||||
"{c|" + value + "%}",
|
||||
];
|
||||
if (params == "总数") {
|
||||
if (params == "") {
|
||||
return ''
|
||||
}else{
|
||||
return arr.join(" ");
|
||||
|
|
|
@ -12,17 +12,23 @@ import {
|
|||
defineProps,
|
||||
watch,
|
||||
} from "vue";
|
||||
import tools from "@/utils/tools";
|
||||
var map = null;
|
||||
const initMap = () => {
|
||||
map = new BMapGL.Map("map", { minZoom: 11, maxZoom: 20 });
|
||||
map.enableScrollWheelZoom(true);
|
||||
// map.setMapStyleV2({
|
||||
// styleId: "d0acde891abd157741b71e12670ee2e6",
|
||||
// });
|
||||
|
||||
let type = tools.data.get("type");
|
||||
if (type == 1) {
|
||||
} else {
|
||||
map.setMapStyleV2({
|
||||
styleId: "d0acde891abd157741b71e12670ee2e6",
|
||||
});
|
||||
}
|
||||
goMapCenter([119.178783, 29.034583], 15);
|
||||
// 开启交通流量图层
|
||||
// map.addTileLayer(new BMapGL.TrafficLayer());
|
||||
map.setTrafficOn(); // 添加交通流量图层
|
||||
// 开启交通流量图层
|
||||
// map.addTileLayer(new BMapGL.TrafficLayer());
|
||||
map.setTrafficOn(); // 添加交通流量图层
|
||||
};
|
||||
|
||||
//地图中点
|
||||
|
|
|
@ -59,9 +59,8 @@ data.list.forEach((item) => {
|
|||
legendData.push(item.name);
|
||||
});
|
||||
data.list.push({
|
||||
name: "总数",
|
||||
name: "",
|
||||
value: sum,
|
||||
tooltip: { formatter: () => "" },
|
||||
itemStyle: { normal: { color: "rgba(0, 0, 0, 0)" } },
|
||||
});
|
||||
const colorList = [
|
||||
|
@ -113,7 +112,8 @@ const getOption = () => {
|
|||
value = data.list[i].value;
|
||||
}
|
||||
}
|
||||
if (params == "总数") {
|
||||
if (params == "") {
|
||||
return ''
|
||||
} else {
|
||||
return `${params};${value}%`;
|
||||
}
|
||||
|
|
|
@ -142,7 +142,7 @@ const login = () => {
|
|||
// console.log( 555,res, auth__code);
|
||||
if (res.auth_code) {
|
||||
http
|
||||
.post(`/api/ggfwyth/ding/one_click_login?authCode=${res.auth_code}`)
|
||||
.post(`/api/ggfwyth/ding/one_click_login/${res.auth_code}`)
|
||||
.then((response) => {
|
||||
if (response.code == 200) {
|
||||
console.log("response", response);
|
||||
|
|
|
@ -1076,10 +1076,14 @@ const pagination = reactive({
|
|||
//地图初始化
|
||||
const initMap = () => {
|
||||
map = new BMapGL.Map("map", { minZoom: 8, maxZoom: 20 });
|
||||
map.setMapType(BMAP_SATELLITE_MAP);
|
||||
let type = tools.data.get("type");
|
||||
if(type==1){
|
||||
|
||||
}else{
|
||||
map.setMapType(BMAP_SATELLITE_MAP);
|
||||
}
|
||||
map.enableScrollWheelZoom(true);
|
||||
goMapCenter([119.178783, 29.034583], 11);
|
||||
|
||||
//加载乡镇信息
|
||||
loadTown();
|
||||
//渲染地块
|
||||
|
@ -1856,7 +1860,7 @@ const buten = async (item) => {
|
|||
});
|
||||
addJd();
|
||||
|
||||
if (title_jd.value == "") {
|
||||
if (cfJd.value == "") {
|
||||
} else {
|
||||
if (sfdd.value) {
|
||||
// cs_dd_arr.value.forEach((item, index) => {
|
||||
|
@ -1896,7 +1900,7 @@ const buten2 = async (item) => {
|
|||
});
|
||||
addJd();
|
||||
|
||||
if (title_jd.value == "") {
|
||||
if (cfJd.value == "") {
|
||||
} else {
|
||||
if (sfdd.value) {
|
||||
// cs_dd_arr.value.forEach((item, index) => {
|
||||
|
@ -2041,7 +2045,7 @@ const getDatasL = async (e, i) => {
|
|||
cs_dd_arr.value.forEach((item, index) => {
|
||||
map.removeOverlay(cs_dd_arr.value[index]);
|
||||
});
|
||||
if (title_jd.value == "") {
|
||||
if (cfJd.value == "") {
|
||||
} else {
|
||||
if (cfCs.value) {
|
||||
cs_dd_arr.value = [...xuanzhongCs.value];
|
||||
|
@ -2159,7 +2163,7 @@ const getDatas = async (e, i, y = true) => {
|
|||
map.removeOverlay(cs_dd_arr.value[index]);
|
||||
});
|
||||
|
||||
if (title_jd.value == "") {
|
||||
if (cfJd.value == "") {
|
||||
} else {
|
||||
if (sfdd.value) {
|
||||
if (choose.value.person == "") {
|
||||
|
@ -2474,7 +2478,7 @@ const getDataBqs2 = async (jd, cs, bq) => {
|
|||
cs_dd_arr.value.forEach((item, index) => {
|
||||
map.removeOverlay(cs_dd_arr.value[index]);
|
||||
});
|
||||
if (title_jd.value == "") {
|
||||
if (cfJd.value == "") {
|
||||
} else {
|
||||
if (sfdd.value) {
|
||||
// if (choose.value.person == "") {
|
||||
|
@ -2534,13 +2538,13 @@ const getDataBqs3 = async (jd, cs, bq) => {
|
|||
});
|
||||
});
|
||||
|
||||
cs_dd_arr.value = [...xuanzhongCs.value];
|
||||
// cs_dd_arr.value = [...xuanzhongCs.value];
|
||||
if (choose.value.person == "") {
|
||||
cs_dd_arr.value.map((item, index) => {
|
||||
DGcreateCs(item, index);
|
||||
});
|
||||
} else {
|
||||
console.log(cs_dd_arr.value);
|
||||
console.log(666666,cs_dd_arr.value);
|
||||
cs_dd_arr.value.map((item, index) => {
|
||||
DGcreateCs2(item, index);
|
||||
});
|
||||
|
@ -2584,7 +2588,7 @@ const getDataBqs4 = async (jd, cs, bq) => {
|
|||
cs_dd_arr.value.forEach((item, index) => {
|
||||
map.removeOverlay(cs_dd_arr.value[index]);
|
||||
});
|
||||
if (title_jd.value == "") {
|
||||
if (cfJd.value == "") {
|
||||
} else {
|
||||
if (sfdd.value) {
|
||||
if (choose.value.person == "") {
|
||||
|
@ -3660,7 +3664,8 @@ const addPolygonCounty = () => {
|
|||
} else {
|
||||
setTimeout(() => {
|
||||
title_jd.value = item.name;
|
||||
}, 1000);
|
||||
},1000)
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -3866,17 +3871,11 @@ const addPolygonCountyCs = () => {
|
|||
});
|
||||
map.addOverlay(cs_qk_arr.value[index]);
|
||||
cs_qk_arr.value[index].addEventListener("click", async () => {
|
||||
// if(item.name == '士元村' || item.name == '茶场新村' || item.name == '前江新村' || item.name=='虎龙村' || item.name=='白马村' || item.name=='凤基坤村'){
|
||||
// isclick.value=item.name;
|
||||
// }else{
|
||||
// isclick.value=item.name;
|
||||
// }
|
||||
|
||||
if (drawing.value) {
|
||||
return;
|
||||
}
|
||||
if (!title_jd.value) {
|
||||
return;
|
||||
if(!title_jd.value){
|
||||
return
|
||||
}
|
||||
loadingss.value = true;
|
||||
cs_dd_arr.value = [];
|
||||
|
|
Loading…
Reference in New Issue