|
@@ -12,7 +12,6 @@ import LgStyle from "@/views/gis/map-info/style/lg";
|
|
|
import CzwStyle from "@/views/gis/map-info/style/czw";
|
|
|
import HczStyle from "@/views/gis/map-info/style/hcz";
|
|
|
import axios from "axios";
|
|
|
-import {formatPosition} from "@/utils/easyMap";
|
|
|
import * as turf from "@turf/turf";
|
|
|
// @ts-ignore
|
|
|
import PointIcon from "@/assets/images/gis-layout/gis-layout-tools_tool-bz_icon.png";
|
|
@@ -518,7 +517,7 @@ const actions = {
|
|
|
},
|
|
|
LOAD_GIS_PARAMS_QY_ANALYSIS({state, rootState, dispatch}: any) {
|
|
|
if (state.gisParams.qy.analysisDeviceLayer) {
|
|
|
- state.gisParams.qy.analysisWKT = formatPosition.cpnTwpn(state.gisParams.qy.analysisCircle.getGeometry().getCoordinates())
|
|
|
+ state.gisParams.qy.analysisWKT = `POLYGON(${state.gisParams.qy.analysisCircle.getGeometry().getCoordinates().map(v => '(' + v.map(c => `${c[0]} ${c[1]}`).join(',') + ')')})`
|
|
|
dispatch('LOAD_GIS_ELEMENT')
|
|
|
dispatch('LOAD_GIS_QY_ANALYSIS_ELEMENT')
|
|
|
state.gisParams.qy.info['5'].tableData = []
|