CzRger 1 year ago
parent
commit
229e78a0cd
2 changed files with 43 additions and 3 deletions
  1. 1 1
      src/components/easyMap/initMapInfo.ts
  2. 42 2
      src/views/gis/index.vue

+ 1 - 1
src/components/easyMap/initMapInfo.ts

@@ -5,7 +5,7 @@ import LutuImg from './images/bg-land.png'
 import WeixingImg from './images/bg-sky.png'
 import store from '@/store/index'
 
-const isInternet = window.location.origin.includes('74.10') ? false : true
+const isInternet = true
 
 const baseMapView = {
   center: [109.6915958479584, 19.111636735969318],

+ 42 - 2
src/views/gis/index.vue

@@ -1,5 +1,10 @@
 <template>
-  asdasds
+  <div class="main">
+    <EasyMapComponent
+        class="map"
+        @easyMapLoad="mapLoad"
+    />
+  </div>
 </template>
 
 <script lang="ts">
@@ -17,6 +22,9 @@ import {
 } from 'vue'
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
+import * as source from "ol/source";
+import * as layer from "ol/layer";
+import * as format from "ol/format";
 
 export default defineComponent({
   name: '',
@@ -27,14 +35,46 @@ export default defineComponent({
     const route = useRoute();
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
     const state = reactive({
-
+      map: <any>null,
+      mapFunc: <any>null,
+      elementLayer: <any>null,
     })
+    const mapLoad = (map, func) => {
+      state.map = map
+      state.mapFunc = func
+      initWMSElement()
+    }
+    const initWMSElement = () => {
+      const _tileWMS = new source.TileWMS({
+        url: `http://192.168.31.19:8082/poiwmts/color/getTile2`,
+        params: {
+          'FORMAT': 'image/png8',
+          'VERSION': '1.1.1',
+          "exceptions": 'application/vnd.ogc.se_inimage',
+          refresh: new Date().getTime()
+        }
+      })
+      if (!state.elementLayer) {
+        state.elementLayer = new layer.Tile({
+          source: _tileWMS,
+          zIndex: 2,
+        })
+        state.map.addLayer(state.elementLayer)
+      } else {
+        state.elementLayer.setSource(_tileWMS)
+      }
+    }
     return {
       ...toRefs(state),
+      mapLoad
     }
   },
 })
 </script>
 
 <style scoped lang="scss">
+.main {
+  width: 100%;
+  height: 100vh;
+}
 </style>