应用CSS到谷歌Mapiframe

5w9g7ksd  于 2022-12-24  发布在  其他
关注(0)|答案(2)|浏览(75)

我尝试将css应用到谷歌Mapiframe中,以摆脱那个丑陋的横幅:

但是我找不到一种方法将我的样式表链接到那个iframe..有什么方法可以做到吗?
先谢了!

kwvwclae

kwvwclae1#

尝试嵌入谷歌Mapiframe而不是这个代码,它可以帮助你设计你的代码,因为你想,也不添加边框条。如果它不工作,然后尝试创建新的位置在谷歌Map上相同的地址,然后添加iframe,它完全工作,因为你想要的。
在文件中添加此jquery代码的另一种方法。

$(document).ready( function() {
    $('.name-of-class').css('display','none');
    // find the name of the class using inspect element and then replace
    // it with the class name it will work 100%
});
5rgfhyps

5rgfhyps2#

我也在寻找一个解决方案,以隐藏顶部横幅从谷歌我的Map。找到了一个解决方案在这里:http://www.howtoonlinetips.com/hide-google-map-top-bar-embedded-header/
它很好地满足了我的需要。只是用div Package 了iframe,并隐藏了顶部。

<div style="height:400px; width:100%; display:inline-block; overflow:hidden;"> 
   <iframe class="custom-google-map" style="position:relative; top:-50px; border:none;" src="http://source-fo-the-map.com" width="What Ever Width" height="445" />
</div>

相关问题