I implemented the v3 of google maps in my site. I created custom images to show points on the map.
One of the custom images is 120px X 120px size and i would like to point the arrow of infowindow in the center of this image and not on the top middle.
How can i do that?
Try using the pixelOffset option in InfoWindowOptions.
myinfo = new google.maps.InfoWindow({
content: "my content",
pixelOffset: new google.maps.Size(0, 60)
});
myinfo.open(map, marker);
Positive y-offset values send the InfoWindow down.