gpt4 book ai didi

google-maps-api-3 - Google maps-api v3 InfoWindow 在页面加载时自动打开

转载 作者:行者123 更新时间:2023-12-03 11:08:46 24 4
gpt4 key购买 nike

我正在开发一个使用 Google Maps api-v3 的项目,
在 map 上会有一些地方标记,其中包含我存储在 InfoWindow 中的信息。

我想知道是否可以将 InfoWindow 设置为在页面加载时自动打开(即在没有用户交互的情况下自动打开)。

在网上搜索,我似乎发现它需要绑定(bind)到一个事件监听器,但 InfoWindow 对象似乎拥有的所有事件都是鼠标事件。

有谁知道某种解决方法?

最佳答案

不确定我是否完全理解您的问题,但这适用于我使用硬编码的 LatLng:

var infoWindow = null;
function initialize()
{
infoWindow = new google.maps.InfoWindow();
var windowLatLng = new google.maps.LatLng(43.25,-68.03);
infoWindow.setOptions({
content: "<div>This is the html content.</div>",
position: windowLatLng,
});
infoWindow.open(map);
} // end initialize

google.setOnLoadCallback(initialize);

关于google-maps-api-3 - Google maps-api v3 InfoWindow 在页面加载时自动打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10342994/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com