|
@@ -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>
|