* @function Theme.prototype.removeAllFeatures * @description 清除当前图层所有的矢量要素。
()
| 260 | * @description 清除当前图层所有的矢量要素。 |
| 261 | */ |
| 262 | removeAllFeatures() { |
| 263 | if (this.renderer) { |
| 264 | this.renderer.clear(); |
| 265 | } |
| 266 | this.features = []; |
| 267 | this.dispatchEvent({type: 'featuresremoved', value: {features: [], succeed: true}}); |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * @function Theme.prototype.getFeatures |