@dra2020/baseclient 1.0.113 → 1.0.114
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 +5 -0
- package/dist/baseclient.js.map +1 -1
- package/dist/geo/geo.d.ts +1 -0
- package/lib/geo/geo.ts +7 -0
- package/package.json +1 -1
package/dist/geo/geo.d.ts
CHANGED
package/lib/geo/geo.ts
CHANGED
|
@@ -475,6 +475,13 @@ export class GeoMultiCollection
|
|
|
475
475
|
}
|
|
476
476
|
|
|
477
477
|
allTopo(): Poly.Topo
|
|
478
|
+
{
|
|
479
|
+
// Note that you can't actually switch between allNewTopo and allOldTopo
|
|
480
|
+
// without calling _onChange between the calls to reset the 'all' tag.
|
|
481
|
+
return this.allNewTopo();
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
allOldTopo(): Poly.Topo
|
|
478
485
|
{
|
|
479
486
|
if (this.nEntries == 0) return null;
|
|
480
487
|
if (! this.all.topo)
|