|
|
|
@ -207,6 +207,8 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="Map">
|
|
|
|
|
import { h } from "vue";
|
|
|
|
|
import { ElNotification } from "element-plus";
|
|
|
|
|
import NavigationBar from "@/components/NavigationBar";
|
|
|
|
|
import marsMap from "@/components/marsMap";
|
|
|
|
|
import markerIcon from "@/assets/images/map-marker.png";
|
|
|
|
@ -333,11 +335,6 @@ onUnmounted(() => {
|
|
|
|
|
const lookIamge = (index) => {
|
|
|
|
|
initialIndex.value = index; //阅览的索引
|
|
|
|
|
showPreview.value = true;
|
|
|
|
|
|
|
|
|
|
// if (!exampleFile) return;
|
|
|
|
|
// const imageItem = document.getElementById(`businessImage` + index);
|
|
|
|
|
// console.log('sssddd',)
|
|
|
|
|
// imageItem.click();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -573,6 +570,14 @@ const changeModel = (index) => {
|
|
|
|
|
currentModelIndex.value = index;
|
|
|
|
|
if (index == 1) {
|
|
|
|
|
if (mapLayer.tiles3dLayer == undefined) {
|
|
|
|
|
ElNotification({
|
|
|
|
|
title: "渲染小提示!",
|
|
|
|
|
message: h(
|
|
|
|
|
"i",
|
|
|
|
|
{ style: "color: teal" },
|
|
|
|
|
"首次加载三维模型需要一段时间,请耐心等待。"
|
|
|
|
|
),
|
|
|
|
|
});
|
|
|
|
|
mapLayer.tiles3dLayer = new mars3d.layer.TilesetLayer({
|
|
|
|
|
name: "模型名称",
|
|
|
|
|
url: "http://localhost:9090/B3dmqlh06/tileset.json",
|
|
|
|
|