()
| 490 | } |
| 491 | |
| 492 | private _assertInitialized(): asserts this is {marker: google.maps.Marker} { |
| 493 | if (typeof ngDevMode === 'undefined' || ngDevMode) { |
| 494 | if (!this.marker) { |
| 495 | throw Error( |
| 496 | 'Cannot interact with a Google Map Marker before it has been ' + |
| 497 | 'initialized. Please wait for the Marker to load before trying to interact with it.', |
| 498 | ); |
| 499 | } |
| 500 | } |
| 501 | } |
| 502 | } |
no outgoing calls
no test coverage detected