[google maps API] 關閉所有開啟的 infowindow
- var infoWindows = [];
- //add infowindow to array
- infoWindows.push(infowindow);
再加這個就可以了。
- function closeAllInfoWindows() {
- for (var i=0;i<infoWindows.length;i++) {
- infoWindows[i].close();
- }
- }
出處: Close all info windows google maps API V3?
留言