1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <template>
| <mars-pannel :visible="true" right="10" top="10">
| <a-space>
| <mars-button @click="addLayer">叠加图层</mars-button>
| <mars-button @click="removeLayer">移除图层</mars-button>
| </a-space>
| </mars-pannel>
| </template>
|
| <script setup lang="ts">
| import * as mapWork from "./map.js"
|
| const addLayer = () => {
| mapWork.addLayer()
| }
|
| const removeLayer = () => {
| mapWork.removeLayer()
| }
| </script>
|
|