| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /**
- * @Author: Caven
- * @Date: 2020-08-30 16:43:12
- */
-
- import { Cesium } from '@dc-modules/namespace'
- import { PlotEventType } from '@dc-modules/event'
- import { Transform } from '@dc-modules/transform'
- import { AttackArrow } from '@dc-modules/overlay'
- import Draw from './Draw'
- import AttackArrowGraphics from '../graphics/AttackArrowGraphics'
-
- const DEF_STYLE = {
- material: Cesium.Color.YELLOW.withAlpha(0.6),
- fill: true
- }
-
- class DrawAttackArrow extends Draw {
- constructor(style) {
- super()
- this._maxAnchorSize = 3
- this._style = {
- ...DEF_STYLE,
- ...style
- }
- this._graphics = new AttackArrowGraphics()
- }
-
- /**
- *
- * @private
- */
- _mountedHook() {
- this.drawTool.tooltipMess = '单击选择点位'
- this._delegate = new Cesium.Entity({
- polygon: {
- ...this._style,
- hierarchy: new Cesium.CallbackProperty(() => {
- if (this._positions.length > 2) {
- this._graphics.positions = this._positions
- return this._graphics.hierarchy
- } else {
- return null
- }
- }, false)
- }
- })
- this._layer.entities.add(this._delegate)
- }
-
- /**
- *
- * @private
- */
- _stopdHook() {
- let attackArrow = null
- if (this._positions.length) {
- attackArrow = new AttackArrow(
- Transform.transformCartesianArrayToWGS84Array(this._positions)
- ).setStyle(this._style)
- }
- this._options.onDrawStop && this._options.onDrawStop(attackArrow)
- }
-
- /**
- *
- * @param position
- * @private
- */
- _onDrawAnchor(position) {
- let len = this._positions.length
- this._positions.push(position)
- this.drawTool.fire(PlotEventType.CREATE_ANCHOR, { position })
- this._graphics.positions = this._positions
- if (len >= this._maxAnchorSize) {
- this._positions.pop()
- this.drawTool.fire(PlotEventType.DRAW_STOP)
- }
- }
- }
-
- export default DrawAttackArrow
|