| 
                        123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | 
                        - /**
 -  * @Author: Caven
 -  * @Date: 2020-08-31 10:54:38
 -  */
 - 
 - import { Cesium } from '@dc-modules/namespace'
 - import { Transform } from '@dc-modules/transform'
 - import Edit from './Edit'
 - 
 - class EditCircle extends Edit {
 -   constructor(overlay) {
 -     super()
 -     this._overlay = overlay
 -     this._center = undefined
 -     this._radius = 0
 -   }
 - 
 -   _mountEntity() {
 -     this._radius = this._overlay.radius
 -     this._center = Transform.transformWGS84ToCartesian(this._overlay.center)
 -     this._overlay.show = false
 -     this._delegate = new Cesium.Entity({
 -       polygon: {
 -         material: this._overlay.delegate?.polygon?.material
 -       }
 -     })
 -     this._positions = [].concat([
 -       this._center,
 -       this._computeCirclePoints(this._center, this._radius)[0]
 -     ])
 -     this._delegate.polygon.hierarchy = new Cesium.CallbackProperty(time => {
 -       if (this._positions.length > 1) {
 -         this._radius = Cesium.Cartesian3.distance(
 -           this._positions[0],
 -           this._positions[1]
 -         )
 -         if (this._radius <= 0) {
 -           return null
 -         }
 -         let pnts = this._computeCirclePoints(this._positions[0], this._radius)
 -         pnts.push(pnts[0])
 -         return new Cesium.PolygonHierarchy(pnts)
 -       } else {
 -         return null
 -       }
 -     }, false)
 -     this._layer.add(this._delegate)
 -   }
 - 
 -   _mountAnchor() {
 -     this._positions.forEach((item, index) => {
 -       this.createAnchor(item, index, false, index % 2 === 0)
 -     })
 -   }
 - 
 -   _computeCirclePoints(center, radius) {
 -     let pnts = []
 -     let cep = Cesium.EllipseGeometryLibrary.computeEllipsePositions(
 -       {
 -         center: center,
 -         semiMajorAxis: radius,
 -         semiMinorAxis: radius,
 -         rotation: 0,
 -         granularity: 0.005
 -       },
 -       false,
 -       true
 -     )
 -     if (cep && cep.outerPositions) {
 -       pnts = Cesium.Cartesian3.unpackArray(cep.outerPositions)
 -     }
 -     return pnts
 -   }
 - 
 -   _onClick(e) {
 -     let now = Cesium.JulianDate.now()
 -     if (this._isMoving) {
 -       this._isMoving = false
 -       if (this._pickedAnchor && this._pickedAnchor.position) {
 -         let position = this._clampToGround ? e.surfacePosition : e.position
 -         if (!position) {
 -           return false
 -         }
 -         this._pickedAnchor.position.setValue(position)
 -         let properties = this._pickedAnchor.properties.getValue(now)
 -         this._positions[properties.index] = position
 -       }
 -     } else {
 -       this._isMoving = true
 -       if (!e.target || !e.target.id) {
 -         return false
 -       }
 -       this._pickedAnchor = e.target.id
 -     }
 -   }
 - 
 -   _onRightClick(e) {
 -     this.unbindEvent()
 -     this._overlay.center = Transform.transformCartesianToWGS84(
 -       this._positions[0]
 -     )
 -     this._overlay.radius = this._radius
 -     this._overlay.show = true
 -     this._plotEvent.raiseEvent(this._overlay)
 -   }
 - }
 - 
 - export default EditCircle
 
 
  |