Returns a promise that resolves when the map has been initialized.
()
| 497 | |
| 498 | /** Returns a promise that resolves when the map has been initialized. */ |
| 499 | _resolveMap(): Promise<google.maps.Map> { |
| 500 | return this.googleMap |
| 501 | ? Promise.resolve(this.googleMap) |
| 502 | : this.mapInitialized.pipe(take(1)).toPromise(); |
| 503 | } |
| 504 | |
| 505 | private _setSize() { |
| 506 | if (this._mapEl) { |
no test coverage detected