You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2018. It is now read-only.
<div class='popup' ng-class="{'set-width': parameter.isDataPresent}">
<h5>{{parameter.name}}</h5>
<b ng-if='parameter.driver'>Driven by</b>
<div>
{{parameter.driver.display_name}}
</div>
<div class='data-msg' ng-if="parameter.isDataPresent">
This vehicle may be inactive. We have not received an updated position location from it since <b>{{parameter.createdAt | date: 'MMM dd HH:mm'}} ({{parameter.createdAt | timeAgo}})</b>
</div>
</div>
css :
.set-width {
width: 100px;
}
Here I applied mouseover / mouseout events on marker to show infowindow. when I hover on marker infowindow flickered. As I noticed it is due to dynamic width (from set-width class).
I am using ui-gmap-google-map to implement map on my application. my code is below :
css :
.set-width {
width: 100px;
}
Here I applied mouseover / mouseout events on marker to show infowindow. when I hover on marker infowindow flickered. As I noticed it is due to dynamic width (from set-width class).
Please see attached video : https://youtu.be/ag6m97rGrBA
Any suggestion on this.
Thanks in advance.