-
Notifications
You must be signed in to change notification settings - Fork 166
/
modify-mode.ts
291 lines (262 loc) · 9.52 KB
/
modify-mode.ts
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import { point, lineString as toLineString } from '@turf/helpers';
import {
recursivelyTraverseNestedArrays,
nearestPointOnProjectedLine,
nearestPointOnLine,
getEditHandlesForGeometry,
getPickedEditHandles,
getPickedEditHandle,
getPickedExistingEditHandle,
getPickedIntermediateEditHandle,
updateRectanglePosition,
NearestPointType,
} from '../utils';
import { LineString, Point, Polygon, FeatureCollection, FeatureOf } from '../geojson-types';
import {
ModeProps,
ClickEvent,
PointerMoveEvent,
StartDraggingEvent,
StopDraggingEvent,
DraggingEvent,
Viewport,
GuideFeatureCollection,
EditHandleFeature,
} from '../types';
import { GeoJsonEditMode } from './geojson-edit-mode';
import { ImmutableFeatureCollection } from './immutable-feature-collection';
export class ModifyMode extends GeoJsonEditMode {
getGuides(props: ModeProps<FeatureCollection>): GuideFeatureCollection {
const handles = [];
const { data, lastPointerMoveEvent } = props;
const { features } = data;
const picks = lastPointerMoveEvent && lastPointerMoveEvent.picks;
const mapCoords = lastPointerMoveEvent && lastPointerMoveEvent.mapCoords;
for (const index of props.selectedIndexes) {
if (index < features.length) {
const { geometry } = features[index];
handles.push(...getEditHandlesForGeometry(geometry, index));
} else {
console.warn(`selectedFeatureIndexes out of range ${index}`); // eslint-disable-line no-console,no-undef
}
}
// intermediate edit handle
if (picks && picks.length && mapCoords) {
const existingEditHandle = getPickedExistingEditHandle(picks);
// don't show intermediate point when too close to an existing edit handle
const featureAsPick = !existingEditHandle && picks.find((pick) => !pick.isGuide);
// is the feature in the pick selected
if (
featureAsPick &&
!featureAsPick.object.geometry.type.includes('Point') &&
!(
props.modeConfig?.lockRectangles && featureAsPick.object.properties.shape === 'Rectangle'
) &&
props.selectedIndexes.includes(featureAsPick.index)
) {
let intermediatePoint: NearestPointType | null | undefined = null;
let positionIndexPrefix = [];
const referencePoint = point(mapCoords);
// process all lines of the (single) feature
recursivelyTraverseNestedArrays(
featureAsPick.object.geometry.coordinates,
[],
(lineString, prefix) => {
const lineStringFeature = toLineString(lineString);
const candidateIntermediatePoint = this.getNearestPoint(
// @ts-expect-error turf types too wide
lineStringFeature,
referencePoint,
props.modeConfig && props.modeConfig.viewport
);
if (
!intermediatePoint ||
candidateIntermediatePoint.properties.dist < intermediatePoint.properties.dist
) {
intermediatePoint = candidateIntermediatePoint;
positionIndexPrefix = prefix;
}
}
);
// tack on the lone intermediate point to the set of handles
if (intermediatePoint) {
const {
geometry: { coordinates: position },
properties: { index },
} = intermediatePoint;
handles.push({
type: 'Feature',
properties: {
guideType: 'editHandle',
editHandleType: 'intermediate',
featureIndex: featureAsPick.index,
positionIndexes: [...positionIndexPrefix, index + 1],
},
geometry: {
type: 'Point',
coordinates: position,
},
});
}
}
}
return {
type: 'FeatureCollection',
features: handles,
};
}
// turf.js does not support elevation for nearestPointOnLine
getNearestPoint(
line: FeatureOf<LineString>,
inPoint: FeatureOf<Point>,
viewport: Viewport | null | undefined
): NearestPointType {
const { coordinates } = line.geometry;
if (coordinates.some((coord) => coord.length > 2)) {
if (viewport) {
// This line has elevation, we need to use alternative algorithm
return nearestPointOnProjectedLine(line, inPoint, viewport);
}
// eslint-disable-next-line no-console,no-undef
console.log(
'Editing 3D point but modeConfig.viewport not provided. Falling back to 2D logic.'
);
}
return nearestPointOnLine(line, inPoint, viewport);
}
handleClick(event: ClickEvent, props: ModeProps<FeatureCollection>) {
const pickedExistingHandle = getPickedExistingEditHandle(event.picks);
const pickedIntermediateHandle = getPickedIntermediateEditHandle(event.picks);
if (pickedExistingHandle) {
const { featureIndex, positionIndexes } = pickedExistingHandle.properties;
let updatedData;
try {
updatedData = new ImmutableFeatureCollection(props.data)
.removePosition(featureIndex, positionIndexes)
.getObject();
} catch (ignored) {
// This happens if user attempts to remove the last point
}
if (updatedData) {
props.onEdit({
updatedData,
editType: 'removePosition',
editContext: {
featureIndexes: [featureIndex],
positionIndexes,
position: pickedExistingHandle.geometry.coordinates,
},
});
}
} else if (pickedIntermediateHandle) {
const { featureIndex, positionIndexes } = pickedIntermediateHandle.properties;
const feature = props.data.features[featureIndex];
const canAddPosition = !(
props.modeConfig?.lockRectangles && feature?.properties.shape === 'Rectangle'
);
if (canAddPosition) {
const updatedData = new ImmutableFeatureCollection(props.data)
.addPosition(featureIndex, positionIndexes, pickedIntermediateHandle.geometry.coordinates)
.getObject();
if (updatedData) {
props.onEdit({
updatedData,
editType: 'addPosition',
editContext: {
featureIndexes: [featureIndex],
positionIndexes,
position: pickedIntermediateHandle.geometry.coordinates,
},
});
}
}
}
}
handleDragging(event: DraggingEvent, props: ModeProps<FeatureCollection>): void {
const editHandle = getPickedEditHandle(event.pointerDownPicks);
if (editHandle) {
// Cancel map panning if pointer went down on an edit handle
event.cancelPan();
this._dragEditHandle('movePosition', props, editHandle, event);
}
}
_dragEditHandle(
editType: string,
props: ModeProps<FeatureCollection>,
editHandle: EditHandleFeature,
event: StopDraggingEvent | DraggingEvent
) {
const editHandleProperties = editHandle.properties;
const editedFeature = props.data.features[editHandleProperties.featureIndex];
let updatedData;
if (props.modeConfig?.lockRectangles && editedFeature.properties.shape === 'Rectangle') {
const coordinates = updateRectanglePosition(
editedFeature as FeatureOf<Polygon>,
editHandleProperties.positionIndexes[1],
event.mapCoords
);
updatedData = new ImmutableFeatureCollection(props.data)
.replaceGeometry(editHandleProperties.featureIndex, { coordinates, type: 'Polygon' })
.getObject();
} else {
updatedData = new ImmutableFeatureCollection(props.data)
.replacePosition(
editHandleProperties.featureIndex,
editHandleProperties.positionIndexes,
event.mapCoords
)
.getObject();
}
props.onEdit({
updatedData,
editType,
editContext: {
featureIndexes: [editHandleProperties.featureIndex],
positionIndexes: editHandleProperties.positionIndexes,
position: event.mapCoords,
},
});
}
handlePointerMove(event: PointerMoveEvent, props: ModeProps<FeatureCollection>): void {
const cursor = this.getCursor(event);
props.onUpdateCursor(cursor);
}
handleStartDragging(event: StartDraggingEvent, props: ModeProps<FeatureCollection>) {
const selectedFeatureIndexes = props.selectedIndexes;
const editHandle = getPickedIntermediateEditHandle(event.picks);
if (selectedFeatureIndexes.length && editHandle) {
const editHandleProperties = editHandle.properties;
const updatedData = new ImmutableFeatureCollection(props.data)
.addPosition(
editHandleProperties.featureIndex,
editHandleProperties.positionIndexes,
event.mapCoords
)
.getObject();
props.onEdit({
updatedData,
editType: 'addPosition',
editContext: {
featureIndexes: [editHandleProperties.featureIndex],
positionIndexes: editHandleProperties.positionIndexes,
position: event.mapCoords,
},
});
}
}
handleStopDragging(event: StopDraggingEvent, props: ModeProps<FeatureCollection>) {
const selectedFeatureIndexes = props.selectedIndexes;
const editHandle = getPickedEditHandle(event.picks);
if (selectedFeatureIndexes.length && editHandle) {
this._dragEditHandle('finishMovePosition', props, editHandle, event);
}
}
getCursor(event: PointerMoveEvent): string | null | undefined {
const picks = (event && event.picks) || [];
const handlesPicked = getPickedEditHandles(picks);
if (handlesPicked.length) {
return 'cell';
}
return null;
}
}