| 
                        123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 | 
                        - /**
 -  * @Author: Caven
 -  * @Date: 2020-07-28 18:37:59
 -  */
 - 
 - import { Cesium } from '@dc-modules/namespace'
 - import State from '@dc-modules/state/State'
 - import Parse from '@dc-modules/parse/Parse'
 - import { Util } from '@dc-modules/utils'
 - import { Transform } from '@dc-modules/transform'
 - import Overlay from '../Overlay'
 - 
 - class CustomLabel extends Overlay {
 -   constructor(position, text) {
 -     super()
 -     this._delegate = new Cesium.Entity({ label: {} })
 -     this._position = Parse.parsePosition(position)
 -     this._text = text
 -     this._state = State.INITIALIZED
 -   }
 - 
 -   get type() {
 -     return Overlay.getOverlayType('custom_label')
 -   }
 - 
 -   set position(position) {
 -     this._position = Parse.parsePosition(position)
 -     this._delegate.position = Transform.transformWGS84ToCartesian(
 -       this._position
 -     )
 -     return this
 -   }
 - 
 -   get position() {
 -     return this._position
 -   }
 - 
 -   set text(text) {
 -     this._text = text
 -     this._delegate.label.text = this._text
 -     return this
 -   }
 - 
 -   get text() {
 -     return this._text
 -   }
 - 
 -   _mountedHook() {
 -     /**
 -      * set the location
 -      */
 -     this.position = this._position
 -     /**
 -      *  initialize the Overlay parameter
 -      */
 -     this.text = this._text
 -   }
 - 
 -   /**
 -    *
 -    * @param {*} style
 -    */
 -   setStyle(style) {
 -     if (!style || Object.keys(style).length === 0) {
 -       return this
 -     }
 -     delete style['text']
 -     Util.merge(this._style, style)
 -     Util.merge(this._delegate.label, style)
 -     return this
 -   }
 - 
 -   /**
 -    * Sets  VLine style
 -    * @param style
 -    * @returns {CustomLabel}
 -    */
 -   setVLine(style = {}) {
 -     if (this._position.alt > 0 && !this._delegate.polyline) {
 -       let position = this._position.copy()
 -       position.alt = style.height || 0
 -       this._delegate.polyline = {
 -         ...style,
 -         positions: Transform.transformWGS84ArrayToCartesianArray([
 -           position,
 -           this._position
 -         ])
 -       }
 -     }
 -     return this
 -   }
 - 
 -   /**
 -    * Sets bottom circle
 -    * @param radius
 -    * @param style
 -    * @param rotateAmount
 -    * @returns {CustomLabel}
 -    */
 -   setBottomCircle(radius, style = {}, rotateAmount = 0) {
 -     let stRotation = 0
 -     let amount = rotateAmount
 -     this._delegate.ellipse = {
 -       ...style,
 -       semiMajorAxis: radius,
 -       semiMinorAxis: radius,
 -       stRotation: new Cesium.CallbackProperty(() => {
 -         stRotation += amount
 -         if (stRotation >= 360 || stRotation <= -360) {
 -           stRotation = 0
 -         }
 -         return stRotation
 -       })
 -     }
 -     return this
 -   }
 - }
 - 
 - Overlay.registerType('custom_label')
 - 
 - export default CustomLabel
 
 
  |