* Draw all features to the basemap
()
| 481 | * Draw all features to the basemap |
| 482 | */ |
| 483 | async drawFeatures() { |
| 484 | await this.drawSVG(this.lines, (c) => this.lineToSVG(c)); |
| 485 | await this.drawSVG(this.multipolygons, (c) => this.multiPolygonToSVG(c)); |
| 486 | await this.drawMarkers(); |
| 487 | await this.drawSVG(this.text, (c) => this.textToSVG(c)); |
| 488 | await this.drawSVG(this.circles, (c) => this.circleToSVG(c)); |
| 489 | } |
| 490 | |
| 491 | /** |
| 492 | * Preloading the icon image |
no test coverage detected