隐藏了Google Maps infowindow关闭按钮

时间:2013-05-23 07:45:13

标签: google-maps

我在我的网站上使用了Google地图,其中包含多个标记和多个infowindows。不知何故,关闭按钮(小x)保持隐藏在infowindow内部,但是如果在应该显示它的位置点击则可以工作。如何解决这个问题?

3 个答案:

答案 0 :(得分:61)

修复它,显然bootstrap.css与图像冲突,不得不使用这些额外的css行

<style type="text/css">
/** FIX for Bootstrap and Google Maps Info window styes problem **/
img[src*="gstatic.com/"], img[src*="googleapis.com/"] {
max-width: none;
}
</style>

任何遇到同样问题的人都可以使用此解决您的问题。

答案 1 :(得分:0)

你也可以试试这个:

max-width: none !important;

这将帮助您完成任何其他规则

答案 2 :(得分:0)

根据您的自定义CSS,您可能还需要添加 max-height:none

img[src*="gstatic.com/"], img[src*="googleapis.com/"] {
    max-width: none !important;
    max-height: none !important;
}