* @function Graph.prototype.redraw * @description 重绘该图层。
()
| 412 | * @description 重绘该图层。 |
| 413 | */ |
| 414 | redraw() { |
| 415 | this.clearCache(); |
| 416 | if (this.renderer) { |
| 417 | this.redrawThematicFeatures(this.map.getView().calculateExtent()); |
| 418 | return true; |
| 419 | } |
| 420 | return false |
| 421 | } |
| 422 | |
| 423 | /** |
| 424 | * @function Graph.prototype.clear |
no test coverage detected