Reputation: 1937
I copied the Google Maps AutoComplete JS example from the demo here:
Everything works great except for rendering the infowindow and shadow. I can't figure out why. At first I thought it was because of I manually set the max width of my map, but it still renders incorrectly when I turn off all my CSS rules.
Any ideas?
Thanks! ~Dan
@thoughtpunch
Upvotes: 7
Views: 2878
Reputation: 5202
Had the same problem, debugging revealed the problem to be with the following CSS snippet:
img { max-width:100% }
Removing/constraining the rule fixed it.
Upvotes: 15