Google Fusion Tables - 关闭 infoWindowHtml 的事件

发布于 2025-01-07 22:06:40 字数 173 浏览 3 评论 0原文

当前使用 infoWindowHtml 在 Ajax 请求中填充工具提示。不过,如果可能的话,我想在活动中删除这个东西,那就太棒了。有什么想法吗?

或者我必须先执行 infowindow.setContent() 然后执行 .open

Currently using infoWindowHtml to populate the tooltip within an Ajax request. Though, I would like to just remove the thing on an event if possible, that would be fantastic. Any Ideas?

Or do I have to do infowindow.setContent() and then .open?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半世蒼涼 2025-01-14 22:06:40

您可以创建自己的信息窗口,这样您就可以控制它们的打开时间、显示位置、内容内容以及关闭时间。以下是基本步骤:

  • 图层上的单击事件为您提供事件的纬度/经度坐标 - 使用它来定位信息窗口。
  • 使用事件中的 infoWindowHtml 来设置内容。
  • 使用信息窗口的打开方法在地图上显示该窗口。
  • 最后,使用 close 方法隐藏任何事件的信息窗口。

以下是信息窗口参考的链接,了解更多信息:

http:// /code.google.com/apis/maps/documentation/javascript/reference.html#InfoWindow

You can create your own info windows, which allow you control over when they're opened, where they display, what the content is, and when they close. Here are the basic steps:

  • The click event on the layer gives you the lat/lon coordinate of the event - use this to position the info window.
  • Use infoWindowHtml from the event to set the content.
  • Use the open method of the info window the show the window on the map.
  • Finally, use the close method to hide the info window on any event.

Here's a link to the info window reference for more information:

http://code.google.com/apis/maps/documentation/javascript/reference.html#InfoWindow

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文