A Google Maps v3 Control Gotcha
Dec. 6th, 2012 11:01 amThis is a blog post copied from John's Website - please feel free to join him there and post comments. He has set up openid, so you can post there with your livejournal account using your openid, which is the same as your journal url minus the http://. You can find this entry at http://www.jcfiala.net/blog/2012/12/06/google-maps-v3-control-gotcha.
Here's something that just bit me:
When you're using google maps api, you may find that the map controls don't show up, or worse, show up only partially. This is what happened to me. Happily, this seems to be a side-effect of using reset.css of some sort - it sets up images to display in a way that google maps doesn't like. Assuming that the div you're writing the map to is #map_canvas
, then what you want to add to your css is:
#map_canvas img {
max-width: inherit;
}
And then the controls appear!