| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /**
- * @Author: Caven
- * @Date: 2020-04-14 18:10:00
- */
-
- 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 Cylinder extends Overlay {
- constructor(position, length, topRadius, bottomRadius) {
- super()
- this._position = Parse.parsePosition(position)
- this._length = +length || 0
- this._topRadius = +topRadius || 0
- this._bottomRadius = +bottomRadius || 0
- this._delegate = new Cesium.Entity({ cylinder: {} })
- this._state = State.INITIALIZED
- }
-
- get type() {
- return Overlay.getOverlayType('cylinder')
- }
-
- set position(position) {
- this._position = Parse.parsePosition(position)
- this._delegate.position = Transform.transformWGS84ToCartesian(
- this._position
- )
- this._delegate.orientation = Cesium.Transforms.headingPitchRollQuaternion(
- Transform.transformWGS84ToCartesian(this._position),
- new Cesium.HeadingPitchRoll(
- Cesium.Math.toRadians(this._position.heading),
- Cesium.Math.toRadians(this._position.pitch),
- Cesium.Math.toRadians(this._position.roll)
- )
- )
- return this
- }
-
- get position() {
- return this._position
- }
-
- set length(length) {
- this._length = +length || 0
- this._delegate.cylinder.length = this._length
- return this
- }
-
- get length() {
- return this._length
- }
-
- set topRadius(topRadius) {
- this._topRadius = +topRadius || 0
- this._delegate.cylinder.topRadius = this._topRadius
- return this
- }
-
- get topRadius() {
- return this._topRadius
- }
-
- set bottomRadius(bottomRadius) {
- this._bottomRadius = +bottomRadius || 0
- this._delegate.cylinder.bottomRadius = this._bottomRadius
- return this
- }
-
- get bottomRadius() {
- return this._bottomRadius
- }
-
- _mountedHook() {
- /**
- * set the location
- */
- this.position = this._position
- /**
- * initialize the Overlay parameter
- */
- this.length = this._length
- this.topRadius = this._topRadius
- this.bottomRadius = this._bottomRadius
- }
-
- /**
- *
- * @param {*} text
- * @param {*} textStyle
- */
- setLabel(text, textStyle) {
- return this
- }
-
- /**
- * Sets Style
- * @param style
- * @returns {Cylinder}
- */
- setStyle(style) {
- if (Object.keys(style).length === 0) {
- return this
- }
-
- delete style['length'] &&
- delete style['topRadius'] &&
- delete style['bottomRadius']
-
- Util.merge(this._style, style)
- Util.merge(this._delegate.cylinder, style)
- return this
- }
- }
-
- Overlay.registerType('cylinder')
-
- export default Cylinder
|