Please help I am trying to create an image map when I hover over coordinates on the background image a new image pops up like a tool tip but with an image. Also I want to make it responsive so that the coordinates adjust based on screen size. Here's my code below please help.
<div class="full-screen force-full-screen" style="background: url('images/slider/full/UAV_VTOL_Main1.png') center center no-repeat; background-size: cover; img id="main-img" usemap"#Map1"><!-- Content
============================================= -->
<section id="content">
<div class="content-wrap nopadding">
<div class="section parallax full-screen dark nomargin noborder" style="background-image: url('images/slider/full/UAV_VTOL_Main1.png') img id="main-img" usemap="#Map1";" data-bottom-top="background-position:0px 0px;" data-top-bottom="background-position:0px -300px;">
<map name="Map1" id="Map1">
<area shape="circle" coords="541,204,12" href="#" alt="Clio Surface Actuation">
<area shape="circle" coords="437,175,12" href="#" alt="Clio Engine Management">
<area shape="circle" onMouseOver="document.getElementById('main-img').src = 'images/slider/full/UAV_VTOL_Clio_radio_mgmt.png';" onMouseOut="document.getElementById('main-img').src = 'images/slider/full/UAV_VTOL_Main1.png';" coords="395,134,10" href="#" alt="Clio Radio Management">
<area shape="circle" onMouseOver="document.getElementById('main-img').src = 'images/slider/full/UAV_VTOL_Tercel_Flight_Computer.png';" onMouseOut="document.getElementById('main-img').src = 'images/slider/full/UAV_VTOL_Main1.png';" coords="535,141,10" href="#" alt="Tercel Flight Computer">
</map>