如何在 Google 地图边缘之外显示信息窗口?

发布于 2024-12-02 03:47:30 字数 326 浏览 1 评论 0原文

当地图元素悬停时,我显示 InfoWindow 弹出窗口(使用 InfoBubble,一个由一些开源坏蛋实现的样式子类)。如果地图上的东西位于边缘,则 InfoBubble 将被截断。

当然,还有自动平移选项,但是由于不断平移,这使得性能变差。相反,我想要:

  1. 让 InfoWindow / InfoBubble 的内容可见,即使它超出了地图边缘,或者
  2. 根据边缘所在位置智能地切换 InfoWindow 的位置和尺寸。

选项 2 不是我现在想要编码的内容。

有人知道实现选项1的方法吗?

(谷歌地图 API v3)

I'm displaying InfoWindow popups (using InfoBubble, a stylable subclass implemented by some open source badasses) when map elements are hovered. If the thing on the map is at the edge, then the InfoBubble will be truncated.

Of course, there is the autoPan option, but that makes the performance bad because of the constant panning. Instead, I would like to either:

  1. have the contents of the InfoWindow / InfoBubble be visible even though it extends beyond the map edge, or
  2. intelligently switch the position and dimensions of the InfoWindow depending on where the edge is.

Option 2 is not what I want to be coding right now.

Anybody know of a way to achieve Option 1?

(Google Maps API v3)

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

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

发布评论

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

评论(2

倒数 2024-12-09 03:47:30

我会尝试在包裹信息气泡的 div 上设置高 z-index(例如 1000)。

I would try to set high z-index(say 1000) on the div that wraps the info bubble.

浅听莫相离 2024-12-09 03:47:30

我想我通过……不使用信息气泡解决了这个问题。我制作了一个自定义信息气泡,它仅在我想要的位置显示一个常规 DOM 节点(div)。因此,它不受位于地图窗格内部的限制。

您可以在 https://givelocal.drivetoendhunger.org/stats 上查看结果(弹出窗口为当您将鼠标悬停在地图上时显示的不是“信息气泡”)。

I think I solved this by ... not using the info bubble. I made a custom info bubble that just displayed a regular DOM node (a div) at the position that I wanted. It was therefore not subject to the limit of being inside of the map pane.

You can see the result on https://givelocal.drivetoendhunger.org/stats (the pop up that is displayed when you hover over the map is not an 'info bubble').

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