0

I have a panorama view. I show the arrows with "linksControl: true", but how to disable the street name of this arrows? I used v3 of API.

4

1 回答 1

1

我试图做同样的事情,但我是个白痴。事实证明,使用非常简单的 css 规则非常容易。如果你有这个标记:

<body style="width: 100%; height: 100%;">
    <div id="pano" style="width: 100%; height: 100%;float:left"></div>
</body>

您只需添加此 css 规则:

#pano text {
    display: none;
}
于 2013-06-18T01:49:27.797 回答