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

I'm using twitter bootstrap, and have a google map.

Images on the map, such as marker are being skewed by the css in bootstrap.

in the bootstrap css there is:

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

when i disable the max-width property using firebug the marker image appears as normal. How can i prevent the bootstrap css affecting the google maps images.?

share|improve this question

7 Answers

With Bootstrap 2.0, this seemed to do the trick:

#mapCanvas img {
  max-width: none;
}
share|improve this answer
Brilliant, does the trick :-) – Avishai Feb 7 '12 at 9:47
Thanks, works great! – imiric Feb 21 '12 at 15:29
3  
Make sure to add #mapCanvas img { width: auto; display:inline; } as mentioned below by @nodrog – jlb Mar 9 '12 at 18:58
From Bootstrap 2.0.3 release notes: "Fixed regression in responsive images support as of 2.0.1. We've re-added max-width: 100%; to images by default. We removed it in our last release since we had folks complaining about Google Maps integration and other projects, but we're taking a different stance now on these things and will require developers to make these tweaks on their end." – kevinwmerritt Apr 30 '12 at 16:58
Great solution :-) – PriestVallon Jun 12 '12 at 0:27
show 5 more comments

There is also an issue with the dropdown selectors for terrain and overlays, adding both these will fix the issues...

#mapCanvas img { 
  max-width: none;
}

#mapCanvas label { 
  width: auto; display:inline; 
} 

The second style will sort of other issues with the terrain and overlay box in some browsers.

share|improve this answer
Yes ! everything seems fixed with this one combined with the answer flagged as "accepted" above. Thanks. – Mat May 19 '12 at 20:37
Awesome. Thanks! – anonymous coward May 31 '12 at 3:52
works like a charm in firefox 17 but not in chrome 23. dont know why but i found the solution just add this: $('.map').on('shown',function(){ google.maps.event.trigger(map, 'resize'); }); – yosafatade Dec 9 '12 at 19:12

Give your map canvas div an id of map_canvas.

This bootstrap commit includes the max-width: none fix for the id map_canvas (but it won't work for mapCanvas).

share|improve this answer
I think only to change the id is necessary in v2.2.2 – jacktrades Feb 8 at 20:58
up vote 7 down vote accepted

answer here: https://github.com/zurb/foundation/issues/26

share|improve this answer
1  
It's interesting that this actually does point to a discussion that comes to the same recommendation as the more concise form below. I had originally taken to be snark as Zurb and Bootstrap are competitors, but I think this highlights the similarities. – Mike Buckbee May 31 '12 at 4:04

You want to over-ride the max-width rule in the CSS section by using max-width: none; This seems to be the way around this problem

share|improve this answer

latest twitter bootstrap 2.0.4 includes this fix directly.

If you are wrapping your content in the a (div class="container") as in the demo page of twitter bootstrap, you should add a style="height: 100%"

share|improve this answer

Changing the #MapCanvas didn't work for us using gmap4rails gem, but did when we changed to

.map_container img {
    max-width: none;
}

.map_container label {
    width: auto; display:inline;
}
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.