fuchengshen
2022-07-09 3a25c05b5ab837714f30469cdcb1e2a77d8d7f6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<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 lang="ts" setup>
import { onMounted } from "vue"
import * as mapWork from "./map.js"
import { useWidget } from "@mars/widgets/common/store/widget"
 
const { activate } = useWidget()
onMounted(() => {
  activate("query-poi")
})
 
const addLayer = () => {
  mapWork.addLayer()
}
 
const removeLayer = () => {
  mapWork.removeLayer()
}
</script>