* @function Graph.prototype.removeFeatures * @description 从专题图中删除要素。这个函数删除所有传递进来的矢量要素。参数中的要素数组中的每一项,必须是已经添加到当前图层中的 feature。 * @param {Array. |FeatureVector|Function} features - 要删除的要素。
(features)
| 394 | * @param {Array.<FeatureVector>|FeatureVector|Function} features - 要删除的要素。 |
| 395 | */ |
| 396 | removeFeatures(features) { |
| 397 | this.clearCache(); |
| 398 | super.removeFeatures(features); |
| 399 | } |
| 400 | |
| 401 | /** |
| 402 | * @function Graph.prototype.removeAllFeatures |
nothing calls this directly
no test coverage detected