@dra2020/baseclient 1.0.108 → 1.0.109

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2655,7 +2655,6 @@ class GeoMultiCollection {
2655
2655
  e.topo = geoCollectionToTopoNonNull(e.col);
2656
2656
  else if (e.map) {
2657
2657
  e.col = geoMapToCollectionNonNull(e.map);
2658
- console.log(`toposplice: constructing topology for ${e.col.features.length} features`);
2659
2658
  e.topo = geoCollectionToTopoNonNull(e.col);
2660
2659
  }
2661
2660
  }
@@ -2735,7 +2734,6 @@ class GeoMultiCollection {
2735
2734
  // Old-style, goes through map (to filter hidden) and then collection
2736
2735
  // this.all.topo = geoCollectionToTopoNonNull(this.allCol());
2737
2736
  // New style, use splice on packed topologies
2738
- console.log(`toposplice: splicing ${this.nEntries} topologies`);
2739
2737
  let topoarray = Object.values(this.entries).map((e) => { return { topology: this._topo(e), filterout: this.hidden }; });
2740
2738
  this.all.topo = Poly.topoSplice(topoarray);
2741
2739
  }