Google maps api v3 map display problem

look at the map on this page: http://demo.wpconsult.net/sample/sub-page-11 if you select a location in the left panel next to the map, the information panel pops up, but it looks broken. I wonder if this is due to warnings like Mime in the Google Chrome Inspector?

+3
source share
1 answer

Scaling is distorted in Google-Maps-for-Rails (gmaps4rails)

Add them to your css. (Another source I found recommended deleting img { max-width }if there is one.)

#map-canvas label { width: auto; display:inline; }
#map-canvas img { max-width: none; }

ps I think everyone gets warnings like mime.

+9
source

All Articles