@idetik/core 0.32.4 → 0.32.5

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/index.d.ts CHANGED
@@ -1618,6 +1618,7 @@ declare class LabelLayer extends Layer {
1618
1618
  protected detach(_context: IdetikContext): void;
1619
1619
  update(viewport?: Viewport): void;
1620
1620
  private updateChunks;
1621
+ hasMultipleLODs(): boolean;
1621
1622
  private isPresentationStale;
1622
1623
  onEvent(event: EventContext): void;
1623
1624
  get colorMap(): LabelColorMap;
package/dist/index.js CHANGED
@@ -19806,6 +19806,9 @@ class dE extends Mg {
19806
19806
  this.visibleChunks_.set(Q, E), this.addObject(E);
19807
19807
  }
19808
19808
  }
19809
+ hasMultipleLODs() {
19810
+ return this.chunkStoreView_ ? this.chunkStoreView_.lodCount > 1 : !1;
19811
+ }
19809
19812
  isPresentationStale() {
19810
19813
  return this.lastPresentationTimeStamp_ === void 0 ? !1 : performance.now() - this.lastPresentationTimeStamp_ > dE.STALE_PRESENTATION_MS_;
19811
19814
  }