index.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <!--
  2. * @FileDescription: 工具栏
  3. * @Author: 刘策
  4. * @Date: 2023-02-07 14:32
  5. * @LastEditors: wg
  6. * @LastEditTime: 2023年2月17日11:48:08
  7. -->
  8. <template>
  9. <div class="measureContainer" >
  10. <div class="titles">
  11. <div class="title-text">测量工具</div>
  12. <div class="title-icon"><i class="iconfont iconguanbi" @click="closeBox"></i></div>
  13. </div>
  14. <div class="main">
  15. <div class="measureList" :id="item.icon" v-for="(item,index) in measureType" :key="index" @click="show(item)">
  16. <i class="iconfont" :class="[item.icon]"></i>
  17. <span>{{ item.label }}</span>
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. let measure
  24. export default {
  25. name: "index",
  26. components: {},
  27. data() {
  28. return {
  29. measureType: [{
  30. label: '距离测量',
  31. icon: 'iconceliang'
  32. }, {
  33. label: '面积测量',
  34. icon: 'iconcemian'
  35. }],
  36. currentActivate: ''
  37. };
  38. },
  39. computed: {},
  40. created() {
  41. },
  42. mounted() {
  43. measure = new GD.Measure(viewer)
  44. },
  45. destroyed() {
  46. measure.deactivate()
  47. },
  48. methods: {
  49. show(item) {
  50. this.clear()
  51. if (this.currentActivate && this.currentActivate === item.label) {
  52. this.currentActivate = ''
  53. return
  54. }
  55. this.currentActivate = item.label
  56. switch (this.currentActivate) {
  57. case '距离测量' :
  58. measure.distance()
  59. break
  60. case '面积测量':
  61. measure.area()
  62. break
  63. }
  64. },
  65. clear(){
  66. measure.clearLayer()
  67. },
  68. closeBox() {
  69. this.clear()
  70. this.$emit('clearMeasure',false)
  71. }
  72. }
  73. }
  74. </script>
  75. <style scoped>
  76. .measureContainer {
  77. width: 150px;
  78. height: auto;
  79. /* background: #1a2f48; */
  80. color: white;
  81. position: fixed;
  82. margin-top: 50px;
  83. z-index: 4;
  84. }
  85. .titles{
  86. height: 40px;
  87. line-height: 40px;
  88. background: linear-gradient(90deg, rgb(255 224 160 / 48%) 0%, rgb(72 246 255 / 26%) 100%);
  89. }
  90. .title-text{
  91. float: left;
  92. margin-left: 10px;
  93. }
  94. .title-icon{
  95. float: right;
  96. margin-right: 10px;
  97. }
  98. .iconguanbi{
  99. border-radius: 5px;
  100. background: #e6a23c;
  101. padding: 2px;
  102. cursor: pointer;
  103. }
  104. .main{
  105. height: 140px;
  106. background: #14202dcf;
  107. }
  108. .measureList{
  109. color: white;
  110. font-size: 16px;
  111. height: 40px;
  112. line-height: 40px;
  113. text-align: center;
  114. border: 1px solid #9b9898;
  115. border-radius: 5px;
  116. margin: 12px 10px;
  117. position: absolute;
  118. width: 85%;
  119. cursor: pointer;
  120. }
  121. .iconfont{
  122. margin-right: 5px;
  123. }
  124. #iconcemian{
  125. top: 90px;
  126. }
  127. </style>