Commit e1aae3ae authored by Italo Mairo's avatar Italo Mairo Committed by Italo Mairo
Browse files

Issue #3257616 by davidhk, itamair: Group of features not working with MarkerCluster

parent eb13185b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14,8 +14,8 @@

      // dealing with a layer group
      if (feature.group) {
        var lGroup = this.create_feature_group(feature);
        for (var groupKey in feature.features) {
        let lGroup = new L.MarkerClusterGroup(leaflet_markercluster_options);
        for (let groupKey in feature.features) {
          let groupFeature = feature.features[groupKey];
          lFeature = this.create_feature(groupFeature);
          if (lFeature !== undefined) {