答案 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();
});