| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | 
							- /**
 -  * @Author: Caven
 -  * @Date: 2020-08-30 16:43:12
 -  */
 - 
 - import Draw from './Draw'
 - import FineArrowGraphics from '@dc-modules/overlay/graphics/FineArrowGraphics'
 - 
 - const { Transform } = DC
 - 
 - const { Cesium } = DC.Namespace
 - 
 - const DEF_STYLE = {
 -   material: Cesium.Color.YELLOW.withAlpha(0.6),
 -   fill: true
 - }
 - 
 - class DrawFineArrow extends Draw {
 -   constructor(style) {
 -     super()
 -     this._positions = []
 -     this._floatingAnchor = undefined
 -     this._style = {
 -       ...DEF_STYLE,
 -       ...style
 -     }
 -     this._graphics = new FineArrowGraphics()
 -   }
 - 
 -   _mountEntity() {
 -     this._delegate = new Cesium.Entity({
 -       polygon: {
 -         ...this._style,
 -         hierarchy: new Cesium.CallbackProperty(() => {
 -           if (this._positions.length > 1) {
 -             this._graphics.positions = this._positions
 -             return this._graphics.hierarchy
 -           } else {
 -             return null
 -           }
 -         }, false)
 -       }
 -     })
 -     this._layer.add(this._delegate)
 -   }
 - 
 -   _onClick(e) {
 -     let position = this._clampToGround ? e.surfacePosition : e.position
 -     let len = this._positions.length
 -     if (len === 0) {
 -       this._positions.push(position)
 -       this.createAnchor(position)
 -       this._floatingAnchor = this.createAnchor(position)
 -     }
 -     this._positions.push(position)
 -     this._graphics.positions = this._positions
 -     this.createAnchor(position)
 -     if (len > 1) {
 -       this._positions.pop()
 -       this.unbindEvent()
 -       let fineArrow = new DC.FineArrow(
 -         Transform.transformCartesianArrayToWGS84Array(this._positions)
 -       )
 -       fineArrow.setStyle(this._style)
 -       this._plotEvent.raiseEvent(fineArrow)
 -     }
 -   }
 - 
 -   _onMouseMove(e) {
 -     this._tooltip.showAt(e.windowPosition, '单击选择点位')
 -     if (this._floatingAnchor) {
 -       let position = this._clampToGround ? e.surfacePosition : e.position
 -       this._floatingAnchor.position.setValue(position)
 -       this._positions.pop()
 -       this._positions.push(position)
 -     }
 -   }
 - }
 - 
 - export default DrawFineArrow
 
 
  |