Twitter Bootstrap CSS affecting Google Maps

后端 未结 11 1835
情深已故
情深已故 2020-11-27 10:31

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 i

11条回答
  •  -上瘾入骨i
    2020-11-27 10:53

    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;
    }
    

提交回复
热议问题