This commit is contained in:
duanxiaohai 2024-09-30 16:20:12 +08:00
commit 36483ffe94
2 changed files with 14 additions and 0 deletions

View File

@ -20,6 +20,7 @@ const initMap = () => {
let type = tools.data.get("type"); let type = tools.data.get("type");
if (type == 1) { if (type == 1) {
} else { } else {
map.setMapStyleV2({ map.setMapStyleV2({
styleId: "d0acde891abd157741b71e12670ee2e6", styleId: "d0acde891abd157741b71e12670ee2e6",

View File

@ -1074,12 +1074,24 @@ const pagination = reactive({
}); });
//------------------------------------------------ //------------------------------------------------
// //
var styleJson = [
{ featureType: "label", elementType: "all", stylers: { visibility: "off" } },
{
featureType: "boundary",
elementType: "all",
stylers: { visibility: "off" },
},
{ featureType: "road", elementType: "all", stylers: { visibility: "off" } },
{ featureType: "water", elementType: "all", stylers: { visibility: "off" } },
{ featureType: "land", elementType: "all", stylers: { visibility: "off" } },
];
const totalType = ref(2); const totalType = ref(2);
const initMap = () => { const initMap = () => {
map = new BMapGL.Map("map", { minZoom: 8, maxZoom: 20 }); map = new BMapGL.Map("map", { minZoom: 8, maxZoom: 20 });
let type = tools.data.get("type"); let type = tools.data.get("type");
if (type == 1) { if (type == 1) {
totalType.value = 1; totalType.value = 1;
map.setMapStyleV2({ styleJson: styleJson });
} else { } else {
totalType.value = 2; totalType.value = 2;
map.setMapType(BMAP_SATELLITE_MAP); map.setMapType(BMAP_SATELLITE_MAP);
@ -4947,6 +4959,7 @@ onMounted(async () => {
} }
} }
} }
//
.btns { .btns {
z-index: 999; z-index: 999;
position: absolute; position: absolute;