我有一个 leaflet 地图,我想为我的多边形添加一个 html 标题(工具提示).如果我使用纯 JQuery:
I have a leaflet map and I would like to add a html title (tooltip) to my polygon. If I use plain JQuery:
$('<title>my tooltip</title>').appendTo()
标题被添加到 DOM 但不可见.请参阅此处了解更多详细信息,但如果我遵循该解决方案,我可以不再使用传单功能.
The title gets added to the DOM but is not visible. See here for more details but if I follow that solution, I can no longer use the leaflet features.
我也尝试了 leaflet.label 插件,但标签会随着鼠标指针移动.我只想要在悬停后不久出现在一个位置的标准浏览器标题工具提示)
I also tried the leaflet.label plugin but the label moves around with the mouse pointer. I just want the standard browser title tooltip that appears in one position shortly after on hover)
感谢您的帮助
Leaflet 1.0.0 有一个新的内置 L.tooltip 类,弃用 Leaflet.label 插件.工具提示指向形状中心,不随鼠标移动.
Leaflet 1.0.0 has a new built-in L.tooltip class that deprecates the Leaflet.label plugin. The tooltip points at the shape center and does not move with the mouse.
L.polygon(coords).bindTooltip("my tooltip").addTo(map);
演示:https://jsfiddle.net/3v7hd2vx/91/
要解决 OP 关于在多边形中心显示工具提示的评论,当多边形很大并且当前缩放很高时可能会看不见,您可以使用 sticky 选项:
To address OP's comment about tooltip being displayed at the polygon center, which can be out of view when the polygon is very big and current zoom is high, you can use the sticky option:
L.polygon(coords).bindTooltip("my tooltip", {
sticky: true // If true, the tooltip will follow the mouse instead of being fixed at the feature center.
}).addTo(map);
更新的演示:https://jsfiddle.net/3v7hd2vx/402/
这篇关于如何将 html 标题(工具提示)添加到 leaflet.js 多边形?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
检查一个多边形点是否在传单中的另一个内部Check if a polygon point is inside another in leaflet(检查一个多边形点是否在传单中的另一个内部)
更改传单标记群集图标颜色,继承其余默认 CSSChanging leaflet markercluster icon color, inheriting the rest of the default CSS properties(更改传单标记群集图标颜色,继承其余默认
触发点击传单标记Trigger click on leaflet marker(触发点击传单标记)
如何更改 LeafletJS 中的默认加载磁贴颜色?How can I change the default loading tile color in LeafletJS?(如何更改 LeafletJS 中的默认加载磁贴颜色?)
将 Leaflet 图层控件添加到侧边栏Adding Leaflet layer control to sidebar(将 Leaflet 图层控件添加到侧边栏)
Leaflet - 在弹出窗口中获取标记的纬度和经度Leaflet - get latitude and longitude of a marker inside a pop-up(Leaflet - 在弹出窗口中获取标记的纬度和经度)