關於在谷歌地圖API V3到信息窗口這個問題..JavaScript的谷歌地圖API - 一個信息窗口一個同時打開..
目前我這個循環功能和位置標記..
function addPostCode(zip, html)
{
geocoder.geocode({ 'address': zip}, function(results, status)
{
if (status == google.maps.GeocoderStatus.OK)
{
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
name: zip
});
});
現在我想用獨特的HTML添加一個信息窗口,但是我想以下行爲..
當一個信息窗口由一個樓盤開盤時,任何當前信息窗口將關閉,只留下新一本..
這是可能的,我將如何去解決它?在這個問題上尋找文件證明是困難的。
該示例就在代碼中。 – sevenseacat 2012-02-17 07:11:59