(eventId)
| 13787 | this._markers.push(markerInfo); |
| 13788 | } |
| 13789 | removeEventMarker(eventId) { |
| 13790 | for (let i = 0; i < this._markers.length; i++) { |
| 13791 | if (eventId == this._markers[i].event.id) { |
| 13792 | this._markers[i].marker.remove(); |
| 13793 | this._markers.splice(i, 1); |
| 13794 | i--; |
| 13795 | } |
| 13796 | } |
| 13797 | } |
| 13798 | updateEventMarker(event2) { |
| 13799 | for (let i = 0; i < this._markers.length; i++) { |
| 13800 | if (this._markers[i].event.id == event2.id) { |
no outgoing calls
no test coverage detected