css - Google map infowindow is offset by 2px -
i using standard infowindow dialog. there 2px offset speech bubble , arrow meet:

any reason might happening?
this sample of code i'm using:
var infowindow = new google.maps.infowindow({}); google.maps.event.addlistener(marker, 'click', function() { var contentstring = '<p>content here</p>'; infowindow.setcontent(contentstring); infowindow.open(map, marker); });
Comments
Post a Comment