|
@@ -121,6 +121,7 @@ import {fromCircle} from "ol/geom/Polygon";
|
|
|
import {unByKey} from "ol/Observable";
|
|
|
import * as sphere from "ol/sphere";
|
|
|
import SelectChartCom from "@/views/gis/layout/tools/select-chart.vue";
|
|
|
+import * as turf from "@turf/turf";
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: '',
|
|
@@ -150,7 +151,7 @@ export default defineComponent({
|
|
|
},
|
|
|
analysisFeat: <any>null,
|
|
|
analysisLayer: <any>null,
|
|
|
- analysisModify: <any>null,
|
|
|
+ // analysisModify: <any>null,
|
|
|
analysisDraw: <any>null,
|
|
|
switchType: 'power',
|
|
|
result: {
|
|
@@ -198,9 +199,9 @@ export default defineComponent({
|
|
|
const initLayer = () => {
|
|
|
if (state.cusTransfer.analysisLayer) {
|
|
|
state.cusTransfer.analysisLayer.setVisible(true)
|
|
|
- if (state.cusTransfer.analysisModify) {
|
|
|
- props.map.addInteraction(state.cusTransfer.analysisModify);
|
|
|
- }
|
|
|
+ // if (state.cusTransfer.analysisModify) {
|
|
|
+ // props.map.addInteraction(state.cusTransfer.analysisModify);
|
|
|
+ // }
|
|
|
if (state.cusTransfer.analysisDraw) {
|
|
|
props.map.addInteraction(state.cusTransfer.analysisDraw);
|
|
|
}
|
|
@@ -229,17 +230,17 @@ export default defineComponent({
|
|
|
});
|
|
|
state.cusTransfer.analysisLayer.set(layerFlag[0], layerFlag[1])
|
|
|
props.map.addLayer(state.cusTransfer.analysisLayer);
|
|
|
- state.cusTransfer.analysisModify = new interaction.Modify({
|
|
|
- source: state.cusTransfer.analysisSource,
|
|
|
- });
|
|
|
- props.map.addInteraction(state.cusTransfer.analysisModify)
|
|
|
- state.cusTransfer.analysisModify.on('modifyend', evt => {
|
|
|
- try {
|
|
|
- const feat = evt.features.item(0)
|
|
|
- getCircleParams(feat.getGeometry())
|
|
|
- } catch {
|
|
|
- }
|
|
|
- })
|
|
|
+ // state.cusTransfer.analysisModify = new interaction.Modify({
|
|
|
+ // source: state.cusTransfer.analysisSource,
|
|
|
+ // });
|
|
|
+ // props.map.addInteraction(state.cusTransfer.analysisModify)
|
|
|
+ // state.cusTransfer.analysisModify.on('modifyend', evt => {
|
|
|
+ // try {
|
|
|
+ // const feat = evt.features.item(0)
|
|
|
+ // getCircleParams(feat.getGeometry())
|
|
|
+ // } catch {
|
|
|
+ // }
|
|
|
+ // })
|
|
|
|
|
|
let sketch;
|
|
|
let helpTooltip;
|
|
@@ -293,7 +294,7 @@ export default defineComponent({
|
|
|
props.map.un('pointermove', pointerMoveHandler)
|
|
|
state.cusTransfer.analysisDraw = null
|
|
|
state.cusTransfer.analysisFeat = evt.feature
|
|
|
- getCircleParams(state.cusTransfer.analysisFeat.getGeometry())
|
|
|
+ getCircleParams(evt.feature.getGeometry())
|
|
|
}
|
|
|
state.cusTransfer.analysisDraw.on('drawend', drawendHandle);
|
|
|
const getCircleParams = (circle) => {
|
|
@@ -320,21 +321,8 @@ export default defineComponent({
|
|
|
}
|
|
|
}
|
|
|
const setCircle = () => {
|
|
|
- const transformProjection = (arr, EPSG, EPSG2) => {
|
|
|
- try {
|
|
|
- if (EPSG2 && EPSG) {
|
|
|
- if (arr && arr.length === 4) {
|
|
|
- return proj.transformExtent(arr, EPSG, EPSG2);
|
|
|
- } else {
|
|
|
- return proj.transform(arr, EPSG, EPSG2);
|
|
|
- }
|
|
|
- }
|
|
|
- return undefined;
|
|
|
- } catch (e) {
|
|
|
- console.error(e);
|
|
|
- }
|
|
|
- }
|
|
|
- state.cusTransfer.analysisFeat.getGeometry().setRadius(transformProjection([state.cusTransfer.draw.radius * 1000, 0], 'EPSG:3857', 'EPSG:4326')[0] - transformProjection([0, 0], 'EPSG:3857', 'EPSG:4326')[0],'XY')
|
|
|
+ const circle = turf.circle(state.cusTransfer.draw.center, state.cusTransfer.draw.radius, {units: 'kilometers'})
|
|
|
+ state.cusTransfer.analysisFeat.setGeometry(new geom.Polygon(circle.geometry.coordinates))
|
|
|
}
|
|
|
const initData = () => {
|
|
|
state.cusTransfer.result.power.data = []
|
|
@@ -409,9 +397,9 @@ export default defineComponent({
|
|
|
})
|
|
|
onUnmounted(() => {
|
|
|
state.cusTransfer.analysisLayer.setVisible(false)
|
|
|
- if (state.cusTransfer.analysisModify) {
|
|
|
- props.map.removeInteraction(state.cusTransfer.analysisModify);
|
|
|
- }
|
|
|
+ // if (state.cusTransfer.analysisModify) {
|
|
|
+ // props.map.removeInteraction(state.cusTransfer.analysisModify);
|
|
|
+ // }
|
|
|
if (state.cusTransfer.analysisDraw) {
|
|
|
props.map.removeInteraction(state.cusTransfer.analysisDraw);
|
|
|
}
|