diff --git a/src/components/MapboxMaps/MapComponent.vue b/src/components/MapboxMaps/MapComponent.vue index 2dd4f92a..8831ae55 100644 --- a/src/components/MapboxMaps/MapComponent.vue +++ b/src/components/MapboxMaps/MapComponent.vue @@ -2,7 +2,14 @@
- +
+
+
+ +
+
云查询
+
+
@@ -92,6 +99,7 @@ import { useMessage } from '@/hooks/web/useMessage'; import {CloseOutlined,EnvironmentOutlined,DeleteOutlined,CopyOutlined,PlusOutlined,ClearOutlined,SplitCellsOutlined} from "@ant-design/icons-vue" import mapboxgl,{ Map, Popup } from 'mapbox-gl'; + import Icon from '@/components/Icon/Icon.vue'; // 图形绘制工具类 import MapboxDraw from '@mapbox/mapbox-gl-draw'; @@ -178,7 +186,11 @@ splitPlugin:{ type:Boolean, default:false, - } + }, + geomsList:{ + type:Array, + default:null, + }, }); let nextMapControl: Array = reactive([]); @@ -1222,6 +1234,9 @@ const handlerLocationDrawPolygon = ()=>{ } + const initiateCloudQuery = () => { + console.log('aaa props.geomsList',props.geomsList) + } defineExpose({ @@ -1233,6 +1248,28 @@