-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ability to measure angles with MeasureAngleMode (#332)
- Loading branch information
1 parent
2c8dbec
commit 5ada239
Showing
11 changed files
with
247 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
// @flow | ||
|
||
import turfBearing from '@turf/bearing'; | ||
import turfCenter from '@turf/center'; | ||
import { _memoize } from '@deck.gl/core'; | ||
|
||
import type { | ||
ClickEvent, | ||
PointerMoveEvent, | ||
Tooltip, | ||
ModeProps, | ||
GuideFeatureCollection | ||
} from '../types.js'; | ||
import type { FeatureCollection } from '../geojson-types.js'; | ||
import { BaseGeoJsonEditMode } from './geojson-edit-mode.js'; | ||
|
||
const DEFAULT_TOOLTIPS = []; | ||
|
||
export class MeasureAngleMode extends BaseGeoJsonEditMode { | ||
_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 | ||
text = `${parseFloat(angle).toFixed(2)} ${units}`; | ||
} | ||
|
||
if (measurementCallback) { | ||
measurementCallback(angle); | ||
} | ||
|
||
const position = turfCenter({ | ||
type: 'FeatureCollection', | ||
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] | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
modules/edit-modes/test/lib/__snapshots__/measure-angle-mode.test.js.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// @flow | ||
/* eslint-env jest */ | ||
|
||
import { MeasureAngleMode } from '../../src/lib/measure-angle-mode.js'; | ||
import { | ||
createFeatureCollectionProps, | ||
createClickEvent, | ||
createPointerMoveEvent | ||
} from '../test-utils.js'; | ||
|
||
describe('move without click', () => { | ||
let mode; | ||
beforeEach(() => { | ||
mode = new MeasureAngleMode(); | ||
mode.handlePointerMove(createPointerMoveEvent(), createFeatureCollectionProps()); | ||
}); | ||
|
||
it('tooltips are empty', () => { | ||
const tooltips = mode.getTooltips(createFeatureCollectionProps()); | ||
expect(tooltips).toEqual([]); | ||
}); | ||
}); | ||
|
||
describe('one click', () => { | ||
let mode; | ||
beforeEach(() => { | ||
mode = new MeasureAngleMode(); | ||
mode.handleClick(createClickEvent([1, 2]), createFeatureCollectionProps()); | ||
}); | ||
|
||
it('tooltips are empty', () => { | ||
const tooltips = mode.getTooltips(createFeatureCollectionProps()); | ||
expect(tooltips).toEqual([]); | ||
}); | ||
}); | ||
|
||
describe('three clicks + pointer move', () => { | ||
let mode; | ||
let props; | ||
|
||
beforeEach(() => { | ||
mode = new MeasureAngleMode(); | ||
props = createFeatureCollectionProps(); | ||
mode.handleClick(createClickEvent([1, 1]), props); | ||
mode.handleClick(createClickEvent([-1, 1]), props); | ||
mode.handleClick(createClickEvent([-1, -1]), props); | ||
props.lastPointerMoveEvent = createPointerMoveEvent([1, -1]); | ||
}); | ||
|
||
it('tooltip contains angle', () => { | ||
const tooltips = mode.getTooltips(props); | ||
expect(tooltips).toMatchSnapshot(); | ||
}); | ||
|
||
it('can measure degrees', () => { | ||
const tooltips = mode.getTooltips(props); | ||
expect(tooltips[0].text).toContain('deg'); | ||
}); | ||
|
||
it('can format angle', () => { | ||
const tooltips = mode.getTooltips({ | ||
...props, | ||
modeConfig: { formatTooltip: angle => String(Math.round(angle)) } | ||
}); | ||
expect(tooltips[0].text).toEqual('45'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.