@formant/data-sdk 1.76.0 → 1.77.0

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.
@@ -32733,7 +32733,17 @@ class TelemetryUniverseData extends BasicUniverseDataConnector {
32733
32733
  return;
32734
32734
  }
32735
32735
  const c = this.getNearestPoint(u)[1];
32736
- if (c.url) {
32736
+ if (c.map) {
32737
+ const d = {
32738
+ width: c.map.width,
32739
+ height: c.map.height,
32740
+ worldToLocal: c.map.worldToLocal,
32741
+ resolution: c.map.resolution,
32742
+ origin: c.map.origin,
32743
+ url: c.map.url
32744
+ };
32745
+ s[c.map.url] = JSON.parse(JSON.stringify(d)), o(d);
32746
+ } else if (c.url) {
32737
32747
  if (s[c.url]) {
32738
32748
  o(s[c.url]);
32739
32749
  return;