1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <template>
| <mars-pannel :visible="true" right="10" top="10">
| <a-space>
| <mars-button @click="to2d">切换为二维视图</mars-button>
| <mars-button @click="to3d">切换为三维视图</mars-button>
| <mars-button @click="toGLB">切换为2.5D维视图</mars-button>
| </a-space>
| </mars-pannel>
| </template>
|
| <script setup lang="ts">
| import * as mapWork from "./map.js"
|
| const to2d = () => {
| mapWork.to2d()
| }
|
| const to3d = () => {
| mapWork.to3d()
| }
| const toGLB = () => {
| mapWork.toGLB()
| }
| </script>
|
|