-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathmeasure-angle-mode.ts
127 lines (104 loc) · 3.42 KB
/
measure-angle-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
import turfBearing from '@turf/bearing';
import turfCenter from '@turf/center';
import memoize from '../memoize';
import { ClickEvent, PointerMoveEvent, Tooltip, ModeProps, GuideFeatureCollection } from '../types';
import { FeatureCollection } from '../geojson-types';
import { GeoJsonEditMode } from './geojson-edit-mode';
const DEFAULT_TOOLTIPS = [];
export class MeasureAngleMode extends GeoJsonEditMode {
_getTooltips = memoize(({ modeConfig, vertex, point1, point2 }) => {
let tooltips = DEFAULT_TOOLTIPS;
if (vertex && point1 && point2) {
const { formatTooltip, measurementCallback } = modeConfig || {};
const units = 'deg';
const angle1 = turfBearing(vertex, point1);
const angle2 = turfBearing(vertex, point2);
let angle = Math.abs(angle1 - angle2);
if (angle > 180) {
angle = 360 - angle;
}
let text;
if (formatTooltip) {
text = formatTooltip(angle);
} else {
// By default, round to 2 decimal places and append units
// @ts-expect-error angle isn't string
text = `${parseFloat(angle).toFixed(2)} ${units}`;
}
if (measurementCallback) {
measurementCallback(angle);
}
const position = turfCenter({
type: 'FeatureCollection',
// @ts-expect-error
features: [point1, point2].map((p) => ({
type: 'Feature',
geometry: {
type: 'Point',
coordinates: p,
},
})),
}).geometry.coordinates;
tooltips = [
{
position,
text,
},
];
}
return tooltips;
});
handleClick(event: ClickEvent, props: ModeProps<FeatureCollection>): void {
if (this.getClickSequence().length >= 3) {
this.resetClickSequence();
}
this.addClickSequence(event);
}
// Called when the pointer moved, regardless of whether the pointer is down, up, and whether something was picked
handlePointerMove(event: PointerMoveEvent, props: ModeProps<FeatureCollection>): void {
props.onUpdateCursor('cell');
}
getPoints(props: ModeProps<FeatureCollection>) {
const clickSequence = this.getClickSequence();
const points = [...clickSequence];
if (clickSequence.length < 3 && props.lastPointerMoveEvent) {
points.push(props.lastPointerMoveEvent.mapCoords);
}
return points;
}
// Return features that can be used as a guide for editing the data
getGuides(props: ModeProps<FeatureCollection>): GuideFeatureCollection {
const guides: GuideFeatureCollection = { type: 'FeatureCollection', features: [] };
const { features } = guides;
const points = this.getPoints(props);
if (points.length > 2) {
features.push({
type: 'Feature',
properties: { guideType: 'tentative' },
geometry: {
type: 'LineString',
coordinates: [points[1], points[0], points[2]],
},
});
} else if (points.length > 1) {
features.push({
type: 'Feature',
properties: { guideType: 'tentative' },
geometry: {
type: 'LineString',
coordinates: [points[1], points[0]],
},
});
}
return guides;
}
getTooltips(props: ModeProps<FeatureCollection>): Tooltip[] {
const points = this.getPoints(props);
return this._getTooltips({
modeConfig: props.modeConfig,
vertex: points[0],
point1: points[1],
point2: points[2],
});
}
}