gpt4 book ai didi

maps - 将鼠标悬停在集群组上时弹出窗口

转载 作者:行者123 更新时间:2023-12-02 00:34:59 25 4
gpt4 key购买 nike

我想在使用 Leaflet.markercluster 制作的集群组上添加弹出窗口,就像悬停在传单标记上的弹出窗口一样。

最佳答案

我能够在 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();
});

关于maps - 将鼠标悬停在集群组上时弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32067832/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com