Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将动态内容加载到地图中的 InfoWindow 中。当我关闭信息窗口并重新打开它时,内容是相同的(尚未更新为最新值)。是否有一种简单的方法可以强制信息窗口在每次打开时加载其内容?
如何将类/ID 分配给要在 InfoWindow 中更新的元素。并在您有新数据时更新这些元素的 HTML。
确保new InfoWindow()只创建一次 InfoWindow ( )。当您想隐藏 infoWindow 使用infoWindow.close()并显示它时,请使用infoWindow.open()而不是每次都创建新的 infoWindow 实例。
new InfoWindow()
infoWindow.close()
infoWindow.open()