这是一个工作版本
这是一个带有Bootstrap样式的破碎版本(缩放小部件不再正确显示)
为什么会破裂?
答案 0 :(得分:11)
您也可以为单个地图修复此问题,例如:
.googleMapContainer img {
max-width: none !important;
}
答案 1 :(得分:4)
在Bootstrap.css 第69行 max-width: 100%;
导致此问题。
img {
max-width: 100%; <--
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
您可以删除它,如果需要,只需指定一个新类.newclass {max-width:100%}
并将其添加到图像中。
答案 2 :(得分:0)
我修复了这里列出的内容略有不同。
.gm-style img {
max-width: none;
}
答案 3 :(得分:0)
无需指定新类只需复制此代码
.angular-google-map img {
max-width: none !important;
}