Google Maps API 3. 叠加层中的文本选择

发布于 2024-09-10 04:58:55 字数 209 浏览 4 评论 0原文

如何在叠加层中进行文本选择? 现在我的叠加层对于文本选择无效 并在我双击叠加层时创建缩放。

http://img121.imageshack.us/img121/9022/overlayph.png

How to make a text selection in my overlays?
Now my overlays inactive for text selection
and creates a zoom when i double-click in overlay.

http://img121.imageshack.us/img121/9022/overlayph.png

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

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

发布评论

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

评论(2

过气美图社 2024-09-17 04:58:55

请参阅文档,静态函数 PreventMapHitsAndGesturesFrom 可能就是您想要的。

preventMapHitsAndGesturesFrom(element) 参数:

元素:元素

返回值:无 停止在屏幕上单击、点击、拖动和滚轮事件
元素从冒泡到地图。用它来防止地图拖动
和缩放,以及地图“点击”事件。

https://developers.google.com/maps/文档/javascript/reference/overlay-view#OverlayView.preventMapHitsAndGesturesFrom

Please see the document, the static function preventMapHitsAndGesturesFrom probably is what you want.

preventMapHitsAndGesturesFrom(element) Parameters:

element:  Element

Return Value: None Stops click, tap, drag, and wheel events on the
element from bubbling up to the map. Use this to prevent map dragging
and zooming, as well as map "click" events.

https://developers.google.com/maps/documentation/javascript/reference/overlay-view#OverlayView.preventMapHitsAndGesturesFrom

染年凉城似染瑾 2024-09-17 04:58:55

您需要取消事件在叠加层上的传播,这样它们就不会冒泡到地图上。最常见的事件是 click、mousedown、mouseup、mousemove、mouseenter、mouseleave,但这仅取决于您想要执行的操作。

因此,将事件侦听器添加到包含覆盖层的基础 div 中并添加:

google.maps.events.addDomListener(theDiv, theEvent, function(e) {
  e.cancelBubble = true;
  if (e.stopPropagation) {
    e.stopPropagation();
  }
});

You need to cancel the propagation of events on the overlay so they do not bubble up to the map. The most commmon events would be click, mousedown, mouseup, mousemove, mouseenter, mouseleave but it just depends what you want to do.

So add an event listener to your base div that contains the overlay and add:

google.maps.events.addDomListener(theDiv, theEvent, function(e) {
  e.cancelBubble = true;
  if (e.stopPropagation) {
    e.stopPropagation();
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文