I would like to set the size of an infowindow to fit the content inside. The standard infowindow is too wide I tried to use maxWidth but it doesn\'t seem to work. What is the be
To set the size of the bubble info-window inside a google map it's enough to add the following css in your CSS file:
.gmap-popup { max-width:204px; max-height:110px; }
Adapted from this discussion.