(mapConstructor: typeof google.maps.Map)
| 319 | } |
| 320 | |
| 321 | private _initialize(mapConstructor: typeof google.maps.Map) { |
| 322 | this._ngZone.runOutsideAngular(() => { |
| 323 | this.googleMap = new mapConstructor(this._mapEl, this._combineOptions()); |
| 324 | this._eventManager.setTarget(this.googleMap); |
| 325 | this.mapInitialized.emit(this.googleMap); |
| 326 | }); |
| 327 | } |
| 328 | |
| 329 | ngOnDestroy() { |
| 330 | this.mapInitialized.complete(); |
no test coverage detected