Google maps 删除“;“登录”-谷歌地图V3中的标记

Google maps 删除“;“登录”-谷歌地图V3中的标记,google-maps,google-maps-api-3,Google Maps,Google Maps Api 3,我开发了一个应用程序,其中有一个非常突出的谷歌地图。右上角的“登录”标记会分散用户的注意力,因为我的应用程序有自己的“登录” 是否允许并且有可能移除它 添加disableDefaultUI:true没有帮助 这是因为您使用signed\u in=true参数包含Google Maps脚本 只需替换: <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script&

我开发了一个应用程序,其中有一个非常突出的谷歌地图。右上角的“登录”标记会分散用户的注意力,因为我的应用程序有自己的“登录”

是否允许并且有可能移除它
添加
disableDefaultUI:true
没有帮助


这是因为您使用
signed\u in=true
参数包含Google Maps脚本

只需替换:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>



甚至删除参数中的符号。

那么简单和明显,但我就是没看到。谢谢
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=false"></script>