I want to put the circle in the middle of picture or div id=canvas
but ,it doesn't appear on the map.
I gave the background-color then it appears..
but it's not in the middle of map.
.circle{
width: 100px;
height: 100px;
border-radius: 50%;
position: absolute;
z-index: 3;
background-color:blue
}
<div id="mainBoard" class="board" style="margin:100px 0px 0px 0px;position:relative; width:100%;height:100%;">
<div id="canvas" style="border-style:solid;border-color:red;">
<img style="position:relative;top 0;left 0; width:100%"
src="https://staticmapmaker.com/img/google@2x.png">
<div class='circle' style='top:50%;left:50%;'></div>
</div>
</div>