我读过几种方法来更改谷歌地图上气球中的内容。我正在从KML文件上传。我想去掉气球底部的指示/搜索附近的链接。我试过下面KML的一些变体,但它似乎对气球没有影响。
<Style id='removal'>
<BalloonStyle>
<text>$[description]></text>
</BalloonStyle>
</Style>
<Placemark>
<name>elephant</name>
<description>These are two elephants, one big and one small
</description>
<styleUrl>#removal</styleUrl>
<Point>
<coordinates>-121.985621 , 37.220577</coordinates>
</Point>
</Placemark>
看到这个问题的年龄,我认为这个问题已经以某种方式得到了解决,但由于它仍然存在:我很确定,如果你直接将KML上传到地图,就没有这样的选项,但如果你用这里描述的JavaScript从自己的页面创建覆盖,气球中就不会有搜索附近的链接。