悬停在集群组上的弹出窗口
Posted
技术标签:
【中文标题】悬停在集群组上的弹出窗口【英文标题】:Popup on hovering over cluster group 【发布时间】:2015-08-18 08:54:27 【问题描述】:我想在使用 Leaflet.markercluster 制作的集群组上添加弹出窗口,就像悬停在传单标记上的弹出窗口一样。
【问题讨论】:
【参考方案1】:借助leaflet.markercluster的github页面中存在的问题,我能够找到答案
cluster.on('clustermouseover', function(c)
var popup = L.popup()
.setLatLng(c.layer.getLatLng())
.setContent(c.layer._childCount +' Locations(click to Zoom)')
.openOn(map);
).on('clustermouseout',function(c)
map.closePopup();
).on('clusterclick',function(c)
map.closePopup();
);
【讨论】:
以上是关于悬停在集群组上的弹出窗口的主要内容,如果未能解决你的问题,请参考以下文章
如何将弹出窗口添加到折线中,当鼠标悬停在地图上的折线上时显示传单
Leaflet JS Map:MouseOver 上的弹出窗口在不正确的位置打开