jxdnsong
2023-04-05 be147d2a99d60a30b20fade742e85b45f06172ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/**
 * @Author: Caven
 * @Date: 2020-08-30 23:12:09
 */
 
import { PlotEventType } from '@/utils/event/index.js'
import midCartesian from '@/utils/math/index.js'
import Edit from './Edit'
 
class EditPolygon extends Edit {
    constructor(overlay) {
        super(overlay)
    }
 
    /**
     *
     * @private
     */
    _mountedHook () {
        this._delegate.polygon.hierarchy = new global.DC.Namespace.Cesium.CallbackProperty(time => {
            if (this._positions.length > 2) {
                return new global.DC.Namespace.Cesium.PolygonHierarchy(this._positions)
            } else {
                return null
            }
        }, false)
 
        this._layer.entities.add(this._delegate)
    }
 
    /**
     *
     * @private
     */
    _mountAnchor () {
        let positions = [].concat(
            this._overlay.delegate.polygon.hierarchy.getValue(global.DC.Namespace.Cesium.JulianDate.now())
                .positions
        )
        positions.push(positions[0])
 
        for (let i = 0; i < positions.length - 1; i++) {
            let mid = midCartesian(positions[i], positions[i + 1])
            this._positions.push(positions[i])
            this._positions.push(mid)
        }
 
        this._positions.forEach((item, index) => {
            this.curEditTool.fire(PlotEventType.CREATE_ANCHOR, {
                position: item,
                index: index,
                isMid: index % 2 !== 0
            })
        })
    }
 
    /**
     *
     * @param pickedAnchor
     * @param position
     * @returns {boolean}
     * @private
     */
    _onEditAnchorStop ({ pickedAnchor, position }) {
        let properties = pickedAnchor.properties.getValue(global.DC.Namespace.Cesium.JulianDate.now())
        let currentIndex = properties.index
        if (properties.isMid) {
            let preMidPosition
            let nextMidPosition
            let len = this._positions.length
            if (currentIndex === len - 1) {
                preMidPosition = midCartesian(
                    this._positions[currentIndex],
                    this._positions[currentIndex - 1]
                )
                nextMidPosition = midCartesian(
                    this._positions[currentIndex],
                    this._positions[0]
                )
            } else {
                preMidPosition = midCartesian(
                    this._positions[currentIndex],
                    this._positions[currentIndex - 1]
                )
                nextMidPosition = midCartesian(
                    this._positions[currentIndex],
                    this._positions[currentIndex + 1]
                )
            }
            this._positions.splice(
                currentIndex,
                1,
                preMidPosition,
                position,
                nextMidPosition
            )
            this.curEditTool.fire(PlotEventType.CLEAR_ANCHOR)
            this._positions.forEach((item, index) => {
                this.curEditTool.fire(PlotEventType.CREATE_ANCHOR, {
                    position: item,
                    index: index,
                    isMid: index % 2 !== 0
                })
            })
        }
    }
 
    /**
     *
     * @param pickedAnchor
     * @param position
     * @private
     */
    _onAnchorMoving ({ pickedAnchor, position }) {
        let properties = pickedAnchor.properties.getValue(global.DC.Namespace.Cesium.JulianDate.now())
        let currentIndex = properties.index
        this._positions[currentIndex] = position
        let len = this._positions.length
        if (!properties.isMid) {
            let preAnchorIndex = -1
            let preMidAnchorIndex = -1
            let nextAnchorIndex = -1
            let nextMidAnchorIndex = -1
            if (currentIndex === 0) {
                preAnchorIndex = len - 2
                preMidAnchorIndex = len - 1
                nextAnchorIndex = currentIndex + 2
                nextMidAnchorIndex = currentIndex + 1
            } else if (currentIndex === len - 2) {
                preAnchorIndex = currentIndex - 2
                preMidAnchorIndex = currentIndex - 1
                nextAnchorIndex = 0
                nextMidAnchorIndex = len - 1
            } else {
                preAnchorIndex = currentIndex - 2
                preMidAnchorIndex = currentIndex - 1
                nextAnchorIndex = currentIndex + 2
                nextMidAnchorIndex = currentIndex + 1
            }
            let preMidPosition = midCartesian(
                this._positions[preAnchorIndex],
                this._positions[currentIndex]
            )
            let nextMidPosition = midCartesian(
                this._positions[nextAnchorIndex],
                this._positions[currentIndex]
            )
            this._positions[preMidAnchorIndex] = preMidPosition
            this._positions[nextMidAnchorIndex] = nextMidPosition
            this.curEditTool.fire(PlotEventType.UPDATE_ANCHOR, {
                index: preMidAnchorIndex,
                position: preMidPosition
            })
            this.curEditTool.fire(PlotEventType.UPDATE_ANCHOR, {
                index: nextMidAnchorIndex,
                position: nextMidPosition
            })
        }
    }
}
 
export default EditPolygon