InfoWindow Sizing Issue in Google Maps API v3
When clicking the home icon on a Google Maps v3 map, the corresponding InfoWindow is not auto-sizing correctly to accommodate its content. Instead, scrollbars appear.
Solution:
The root cause of this issue was addressed by Google in issue https://issuetracker.google.com/issues/35823659 and resolved in Maps JavaScript API version 3.19 in February 2015.
However, a workaround can be implemented by adding a div within the InfoWindow and setting its size using CSS. Assuming all InfoWindows are the same size, the following code can be used:
<code class="html"><div id="mydiv">YourContent</div></code>
<code class="css">#mydiv{ width: 500px; height: 100px; }</code>
The above is the detailed content of How to Fix InfoWindow Sizing Issues in Google Maps API v3?. For more information, please follow other related articles on the PHP Chinese website!