@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.
- package/dist/baseclient.js +0 -2
- package/dist/baseclient.js.map +1 -1
- package/lib/geo/geo.ts +0 -2
- package/package.json +1 -1
package/lib/geo/geo.ts
CHANGED
|
@@ -390,7 +390,6 @@ export class GeoMultiCollection
|
|
|
390
390
|
else if (e.map)
|
|
391
391
|
{
|
|
392
392
|
e.col = geoMapToCollectionNonNull(e.map);
|
|
393
|
-
console.log(`toposplice: constructing topology for ${e.col.features.length} features`);
|
|
394
393
|
e.topo = geoCollectionToTopoNonNull(e.col);
|
|
395
394
|
}
|
|
396
395
|
}
|
|
@@ -485,7 +484,6 @@ export class GeoMultiCollection
|
|
|
485
484
|
// Old-style, goes through map (to filter hidden) and then collection
|
|
486
485
|
// this.all.topo = geoCollectionToTopoNonNull(this.allCol());
|
|
487
486
|
// New style, use splice on packed topologies
|
|
488
|
-
console.log(`toposplice: splicing ${this.nEntries} topologies`);
|
|
489
487
|
let topoarray = Object.values(this.entries).map((e: GeoEntry) =>
|
|
490
488
|
{ return { topology: this._topo(e), filterout: this.hidden } });
|
|
491
489
|
this.all.topo = Poly.topoSplice(topoarray);
|