figureLegend.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <div id="figureLegend" v-if="legendImgUrl.length || legendColor.length">
  3. <div class="common-title">
  4. <span>图例</span>
  5. </div>
  6. <div class="legend-content scroll">
  7. <div class="legend-item" v-for="item in legendImgUrl" :key="item.label">
  8. <span><img :src="'data:image/png;base64,' + item.imageData" alt=""></span>
  9. <span>{{item.label}}</span>
  10. </div>
  11. <div class="legend-item" v-for="item in legendColor" :key="item.label">
  12. <span><div class="color-class" :style="{backgroundColor:item.color}"></div></span>
  13. <span>{{item.label}}</span>
  14. </div>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. import {ref,onMounted,watch} from "vue";
  20. import {useMapStore} from "@/store/mapStore.js";
  21. import {getLegend} from "@/service/map.js";
  22. export default {
  23. name: "figureLegend",
  24. setup(){
  25. const mapStore = useMapStore();
  26. let legendImgUrl = ref([]);
  27. let legendColor = ref([]);
  28. watch(() => mapStore.currentLayerList,(val) => {
  29. showLegend(val)
  30. },{
  31. immediate:true,
  32. deep:true
  33. })
  34. async function showLegend(val) {
  35. legendImgUrl.value = [];
  36. legendColor.value = [];
  37. for (let i = 0; i < val.length; i++) {
  38. await getSingleLegend(val[i]);
  39. }
  40. }
  41. async function getSingleLegend(params) {
  42. try{
  43. const res = await getLegend("https://cimweb.zjw.sh.cegn.cn:2008/MapServiceProxy/" + params.TOKEN + '/0?f=json');
  44. if (res?.data?.drawingInfo?.renderer?.symbol) {//简单的单个样式
  45. let data = res?.data?.drawingInfo?.renderer?.symbol;
  46. if (data?.imageData) {
  47. legendImgUrl.value.push({
  48. imageData: data.imageData,
  49. label: res?.data?.drawingInfo?.renderer?.label || params.label
  50. })
  51. } else if (data?.color) {
  52. legendColor.value.push({
  53. color: "rgb(" + data.color.slice(0, 3).toString() + ")",
  54. label: res?.data?.drawingInfo?.renderer?.label || params.label
  55. })
  56. }
  57. } else if (res?.data?.drawingInfo?.renderer?.uniqueValueInfos) {
  58. let data = res?.data?.drawingInfo?.renderer?.uniqueValueInfos;
  59. data.forEach(item => {
  60. if (item.symbol?.imageData) {
  61. legendImgUrl.value.push({
  62. imageData: item.symbol.imageData,
  63. label: params.label + '-' + item?.label
  64. })
  65. } else if (item.symbol?.color) {
  66. legendColor.value.push({
  67. color: "rgb(" + item.symbol.color.slice(0, 3).toString() + ")",
  68. label: params.label + '-' + item?.label
  69. })
  70. }
  71. })
  72. }
  73. }catch (error){
  74. console.error('Error fetching legend:', error);
  75. }
  76. }
  77. return{
  78. legendImgUrl,
  79. legendColor
  80. }
  81. }
  82. }
  83. </script>
  84. <style scoped lang="scss">
  85. #figureLegend{
  86. background-color: rgba(0, 22, 52, 0.75);
  87. position: absolute;
  88. z-index: 2;
  89. left: 460px;
  90. bottom: 80px;
  91. width: 370px;
  92. height: 173px;
  93. display: flex;
  94. flex-direction: column;
  95. justify-content: center;
  96. align-items: center;
  97. .common-title{
  98. width: 100%;
  99. height: 37px;
  100. background: url("@/assets/imgs/tkxbt.png") no-repeat;
  101. background-size: 100% 100%;
  102. span {
  103. font-family: YouSheBiaoTiHei;
  104. font-weight: 400;
  105. font-size: 20px;
  106. color: #BBCDE6;
  107. opacity: 1;
  108. padding-left: 60px;
  109. background: linear-gradient(0deg, #ACE5FF 0%, #FFFFFF 100%);
  110. -webkit-background-clip: text;
  111. -webkit-text-fill-color: transparent;
  112. }
  113. }
  114. .legend-content{
  115. width: 100%;
  116. height: 120px;
  117. .legend-item{
  118. color: #FFF;
  119. span{
  120. padding-left: 20px;
  121. font-size: 14px;
  122. }
  123. }
  124. .color-class{
  125. width: 26px;
  126. height: 10px;
  127. margin: 0 4px;
  128. display: inline-block;
  129. }
  130. }
  131. }
  132. </style>