* @function GraphThemeLayer.prototype.removeFeatures * @description 从专题图中删除要素。这个函数删除所有传递进来的矢量要素。参数中的要素数组中的每一项,必须是已经添加到当前图层中的 feature。 * @param {Array. |FeatureVector|Function} features - 要删除的要素。
(features)
| 372 | * @param {Array.<FeatureVector>|FeatureVector|Function} features - 要删除的要素。 |
| 373 | */ |
| 374 | removeFeatures(features) { |
| 375 | this.clearCache(); |
| 376 | super.removeFeatures(features); |
| 377 | } |
| 378 | |
| 379 | /** |
| 380 | * @function GraphThemeLayer.prototype.removeAllFeatures |
nothing calls this directly
no test coverage detected