Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anyone with any ideas on what's causing this weird glitch with the google maps UI components, be really grateful to hear from you!

enter image description here

the map is created with:

        var options = {
        zoom: <?php echo $this->zoom ?>,
        center: new google.maps.LatLng(<?php echo $this->centre_lat ?>, <?php echo $this->centre_lon ?>),
            mapTypeControl: false,
            mapTypeId: google.maps.MapTypeId.ROADMAP                
        }; 

        var map = new google.maps.Map(document.getElementById('map_canvas'), options);

and the glitch is the same even with no markers.

share|improve this question
it would be helpful if you added snippet with how you declare this component – slawekwin Sep 19 '11 at 13:44
@slawekwin - updated question. – Haroldo Sep 19 '11 at 14:29

4 Answers

up vote 36 down vote accepted

We ran into the same problem. The css designer was using this style:

style.css

img {max-width: 100%; }

Instead of disabling the zoom control, we fixed the problem by overriding the img style for map_canvas elements like so:

style.css:

#map_canvas img { max-width: none; }

The zoom control now displays correctly.

Setting "img max-width:100%" is a technique employed in responsive/fluid web site design so that images re-size proportionally when the browser is re-sized. Apparently some css grid systems have started setting this style by default. More info about fluid images here: http://www.alistapart.com/articles/fluid-images/ Not sure why this conflicts with the google map...

share|improve this answer
6  
This affected me as well. Google Maps API v3 uses a large-dimensioned transparent png sprite image (http://maps.gstatic.com/mapfiles/iw3.png) which is placed inside a parent container with overflow: hidden. Thus, limiting the width of the image causes the image to be compressed. – jwal Feb 22 '12 at 22:58
This one was stumping me. Thank you very much for posting this solution! – steve.hanson Aug 22 '12 at 3:17
This was really annoying, thanks for the fix! – MiniQuark Jan 31 at 15:22
@Haroldo, this should be marked as the correct answer. – Bill Paetzke Jun 2 at 23:33

Looks like a problem with the zoom control. Try adding zoomControl:false to your options.

In fact it seems the normal zoom slider is positioned off to the left of the page (use Firebug > Inspect Element). Could be a CSS conflict?

share|improve this answer
11  
Ok found it. it's caused by my img {max-width: 100%; } – Haroldo Sep 19 '11 at 15:24
2  
img {max-width:100%;} was my problem too, thanks! – jamesbar2 Oct 16 '12 at 2:48
I face the same problem and have fix after removing the css img{max-width:100%;} thanks – nbhatti2001 Nov 2 '12 at 14:56

Setting max-width: none; on all images inside the maps container makes the Google logo in the left bottom corner blow up nowadays, so I had to put my Google Maps element in an iframe.

share|improve this answer

Well I got the fix for this:

On your CSS you added something like:

img {max-width: 100%; height: auto;}

try not to make it global and it should fix you :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.