Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy characteristics of groups into layers as they are extracted. #971

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/MarkerClusterGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -1150,6 +1150,14 @@ export var MarkerClusterGroup = L.MarkerClusterGroup = L.FeatureGroup.extend({
for (; i < layers.length; i++) {
layer = layers[i];

//Copy characteristics of the group onto each layer in the group, since the group itself will be discarded
if (group.getPopup()) {
layer.bindPopup(group.getPopup());
}
if (group.getTooltip()) {
layer.bindTooltip(group.getTooltip());
}

if (layer instanceof L.LayerGroup) {
this._extractNonGroupLayers(layer, output);
continue;
Expand Down