So you've implemented the Google Maps JavaScript API (V3) in your site but when you run the site the controls look hidden, broken, stretched...

The fix is quite simple. Add the following snippet where #map-canvas is your Google Maps container.
#map-canvas img{
max-width: none;
}
Code language: CSS (css)
Now the controls will magically appear:
