Google Maps API 3. 叠加层中的文本选择
如何在叠加层中进行文本选择? 现在我的叠加层对于文本选择无效 并在我双击叠加层时创建缩放。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅文档,静态函数 PreventMapHitsAndGesturesFrom 可能就是您想要的。
https://developers.google.com/maps/文档/javascript/reference/overlay-view#OverlayView.preventMapHitsAndGesturesFrom
Please see the document, the static function preventMapHitsAndGesturesFrom probably is what you want.
https://developers.google.com/maps/documentation/javascript/reference/overlay-view#OverlayView.preventMapHitsAndGesturesFrom
您需要取消事件在叠加层上的传播,这样它们就不会冒泡到地图上。最常见的事件是 click、mousedown、mouseup、mousemove、mouseenter、mouseleave,但这仅取决于您想要执行的操作。
因此,将事件侦听器添加到包含覆盖层的基础 div 中并添加:
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: