Hello. Thank you for contacting the Toolset support.
Can you please share problem URL where you added the map as well as where you added the focus on marker link.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I have set the next reply to private which means only you and I have access to it.
There is no such feature to open marker popup on mouseover on the marker itself.
However - what if you try to use the following custom JS code and check if that help you to resolve your issue.
jQuery(document).ready(function($){
jQuery( document ).on( 'js_event_wpv_addon_maps_init_map_completed',function(event_settings) {
//// here replace "map-1" with your original map ID
var map_id= "map-1";
var markers = WPViews.view_addon_maps.markers;
var current_map_markers = markers[map_id];
for(var i in current_map_markers) {
var marker = current_map_markers[i];
var infowindow = new google.maps.InfoWindow();
google.maps.event.addListener(marker, 'mouseover', (function(marker,i) {
return function() {
markerdata = WPViews.view_addon_maps.maps_data[0].markers;
for(var j in markerdata){
if(markerdata[j].marker==i){
infowindow.setContent(markerdata[j].markerinfowindow);
infowindow.open(map_id, marker);
}
}
}
})(marker,i));
}
});
});