In google map usually the center bottom of the image of the marker is the lat lng of a point that it has to mark.
Imagine my marker icon is a circle, I would like the center of it to be at the lat-lng of the given point...
Code:
var image_hotspot = 'img/icons/bank_euro.png';
var marker = new google.maps.Marker({
map: map,
position: placeLoc,
icon: image_hotspot
});