隐藏标签Google地图

时间:2018-08-22 20:43:21

标签: css google-maps label

还有一种方法可以用CSS隐藏显示“您拥有此网站吗?”的整个标签。

enter image description here

2 个答案:

答案 0 :(得分:0)

为删除“我拥有此网站,您拥有吗?”

a[href^="developers.google.com/maps/documentation/javascript/…{display:none !important}

删除我使用的Google徽标:

img[src="https://maps.gstatic.com/mapfiles/api-3/images/google_gray.svg"]{display:none !important}

删除我曾经使用过的“ Google地图Nestapágina的名称和名称”

.pvw-title span {
  display: none;
}

并将该类放在map div .php页面中

并删除我使用的“确定”按钮:

.dismissButton {  display: none; 
        background:none !important;
}

答案 1 :(得分:0)

我不建议这样做,但如果有人需要一个糟糕的临时解决方法,可以使用:

    google.maps.event.addListener(YOUR_GMAP_OBJECT, 'tilesloaded', function(){
        // Once map object is rendered, hide gmaps warning (billing account)
        // And consider migrating to a different engine, or paying for gmaps
        $(".dismissButton").click();
    });