Could someone guide me on how to display a pointer on a world map, similar to the one shown below?
I managed to create a circle using HTML/CSS. Here is the code for the one I created:
.circle {
border-radius: 50%/50%;
width: 50px;
height: 50px;
background: black;
}
http://jsfiddle.net/sreeram62/8QRAJ/
Now, I'm looking to add 2 intersecting lines along with an image as shown in the example above. Is this achievable using html/css?
Thank you