我正在尝试使用Google MapView中的zoomToSpan()
方法,但正如我所读到的,这只有在MapView完全加载时才有效,所以我想知道是否有可能添加我的Mapview的监听器,在完成后收到消息。
答案 0 :(得分:-2)
我在地图加载后使用addListener
在我的地图上放置信息窗口,以便地图重新定位并显示整个信息窗口。我在标准的网络浏览器上这样做,我不确定它是否适用于Android平台:
google.maps.event.addListener(map, 'tilesloaded', function(event) {
infowindow.open(map, marker);
// only do this the first time tiles are loaded
google.maps.event.clearListeners(map, 'tilesloaded');
});
以下是我对另一个问题的回复,您可以在其中查看更多代码:How to Display Multiple Google Maps per page with API V3