mirror of
https://github.com/ethan-zf/cesium-plot-js.git
synced 2025-06-24 03:27:29 +00:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import Base from '../base';
|
|
// @ts-ignore
|
|
import { Cartesian3 } from 'cesium';
|
|
import { PolygonStyle } from '../interface';
|
|
|
|
export default class FreehandLine extends Base {
|
|
points: Cartesian3[] = [];
|
|
freehand: boolean;
|
|
|
|
constructor(cesium: any, viewer: any, style?: PolygonStyle) {
|
|
super(cesium, viewer, style);
|
|
this.cesium = cesium;
|
|
this.freehand = true;
|
|
this.setState('drawing');
|
|
}
|
|
|
|
getType(): 'polygon' | 'line' {
|
|
return 'line';
|
|
}
|
|
|
|
/**
|
|
* Add points only on click events
|
|
*/
|
|
addPoint(cartesian: Cartesian3) {
|
|
this.points.push(cartesian);
|
|
if (this.points.length < 2) {
|
|
this.onMouseMove();
|
|
} else {
|
|
this.finishDrawing();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Draw a shape based on mouse movement points during the initial drawing.
|
|
*/
|
|
updateMovingPoint(cartesian: Cartesian3) {
|
|
this.points.push(cartesian);
|
|
this.setGeometryPoints(this.points);
|
|
this.drawLine();
|
|
this.eventDispatcher.dispatchEvent('drawUpdate', cartesian);
|
|
}
|
|
|
|
/**
|
|
* In edit mode, drag key points to update corresponding key point data.
|
|
*/
|
|
updateDraggingPoint(cartesian: Cartesian3, index: number) {
|
|
this.points[index] = cartesian;
|
|
this.setGeometryPoints(this.points);
|
|
this.drawLine();
|
|
}
|
|
|
|
getPoints() {
|
|
return this.points;
|
|
}
|
|
}
|