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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<template>
  <mars-pannel :visible="true" right="10" top="10">
    <div class="f-mb">
      <a-space>
        <span>步长:</span>
        <mars-input-number v-model:value="step" :min="1" :max="10" @change="onChangeGrid" />
        公里
      </a-space>
    </div>
 
    <a-space>
      <span>类型:</span>
      <a-radio-group v-model:value="gridType" name="grid" @change="onChangeGrid">
        <a-radio value="point">点</a-radio>
        <a-radio value="triangle">三角网</a-radio>
        <a-radio value="square">方格网</a-radio>
        <a-radio value="hex">蜂窝网</a-radio>
      </a-radio-group>
    </a-space>
  </mars-pannel>
</template>
 
<script setup lang="ts">
import { ref } from "vue"
import * as mapWork from "./map.js"
 
const gridType = ref("")
const step = ref<number>(5)
 
const onChangeGrid = () => {
  switch (gridType.value) {
    case "point":
      mapWork.pointGrid(step.value)
      break
 
    case "triangle":
      mapWork.triangleGrid(step.value)
      break
 
    case "square":
      mapWork.squareGrid(step.value)
      break
 
    case "hex":
      mapWork.hexGrid(step.value)
      break
 
    default:
      break
  }
}
</script>
<style scoped lang="less">
.ant-input-number {
  width: 100px !important;
}
</style>