score:1

Okay, I'm not sure this is proper code but so far works for me on both desktop and mobile as well as when the page is resized:

Calls rwdImageMaps for image maps to work on resize:

 $(document).ready(function(e) {
    $('img[usemap]').rwdImageMaps();
});

Initiates the coordinates to be reset when mouse hovers over the tabs:

$(function(){
$(".et_pb_tabs_controls").hover(function ( ) {
      $(window).trigger('resize'); 
 });
})

Related Query