| 12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * @Author: Caven
- * @Date: 2020-01-02 16:42:03
- */
-
- import State from '../state/State'
- import Layer from './Layer'
-
- const { Cesium } = DC.Namespace
-
- /**
- * The vector layer is used to add various entity, which is essentially a CustomDataSource
- * that is used to place entities of the same class or business attribute into the same layer
- */
- class VectorLayer extends Layer {
- constructor(id) {
- super(id)
- this._delegate = new Cesium.CustomDataSource(id)
- this.type = Layer.getLayerType('vector')
- this._state = State.INITIALIZED
- }
-
- /**
- * Clears all entities
- * @returns {VectorLayer}
- */
- clear() {
- this._delegate.entities && this._delegate.entities.removeAll()
- this._cache = {}
- this._state = State.CLEARED
- return this
- }
- }
-
- Layer.registerType('vector')
-
- export default VectorLayer
|