I want to show and hide one popup/tooltip on mouse hover.
popups are multiple as below
<div class="hotspot_info pointer" style=" top: {{towerPoint.posY}}%; left: {{towerPoint.posX}}%;" *ngFor="#towerPoint of visualisation.towerPoints">
<div class="tower-details" style=" position: absolute; top: -90px; left: -84%;">
<div class="popover top" style="display: block;">
<div class="arrow" style="left: 50%;"></div>
<h3 class="popover-title">{{towerPoint.tower.name}}</h3>
<div class="popover-content">Tower Name</div>
</div>
</div>
on hover to ".tower-details" I want to show ".popover" and on mouseexit from hide ".popover"