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