| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /**
- * @Author: Caven
- * @Date: 2020-12-31 11:05:32
- */
-
- 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 ScanCirclePrimitive extends Overlay {
- constructor(position, radius) {
- super()
- this._position = Parse.parsePosition(position)
- this._radius = radius
- this._delegate = new Cesium.GroundPrimitive({
- geometryInstances: new Cesium.GeometryInstance({
- geometry: {}
- })
- })
- this._state = State.INITIALIZED
- }
-
- get type() {
- return Overlay.getOverlayType('scan_circle_primitive')
- }
-
- set position(position) {
- this._position = Parse.parsePosition(position)
- this._delegate.geometryInstances.geometry = new Cesium.EllipseGeometry({
- center: Transform.transformWGS84ToCartesian(this._position),
- semiMajorAxis: this._radius,
- semiMinorAxis: this._radius
- })
- return this
- }
-
- get position() {
- return this._position
- }
-
- set radius(radius) {
- this._radius = radius
- this._delegate.geometryInstances.geometry.semiMajorAxis = this._radius
- this._delegate.geometryInstances.geometry.semiMinorAxis = this._radius
- return this
- }
-
- get radius() {
- return this._radius
- }
-
- /**
- *
- * @private
- */
- _setAppearance() {
- if (!this._style) {
- return
- }
- this._delegate.appearance = new Cesium.MaterialAppearance({
- material: Cesium.Material.fromType('CircleScan', {
- color: this._style?.color || Cesium.Color.WHITE,
- speed: this._style?.speed || 10
- })
- })
- }
-
- _mountedHook() {
- /**
- * set the position
- */
- this.position = this._position
-
- /**
- * set the appearance
- */
- !this._delegate.appearance && this._setAppearance()
- }
-
- /**
- * Sets Style
- * @param style
- * @returns {ScanCirclePrimitive}
- */
- setStyle(style = {}) {
- if (Object.keys(style).length === 0) {
- return this
- }
- Util.merge(this._style, style)
- style.classificationType &&
- (this._delegate.classificationType = this._style.classificationType)
- this._setAppearance()
- return this
- }
- }
-
- Overlay.registerType('scan_circle_primitive')
-
- export default ScanCirclePrimitive
|