riku
2025-03-05 b79c0124a44b7af9c3c55c5e19617dd4de162497
src/components/animation/SatelliteAnimation.vue
@@ -100,12 +100,19 @@
          const d = data[index];
          // SatelliteProxy.clearText(mapViews);
          // eslint-disable-next-line vue/no-mutating-props
          that.mapViews.textViews = SatelliteProxy.drawDataText(
          const { textViews, labelsLayer } = SatelliteProxy.drawDataText(
            that.mapViews.points,
            d,
            that.mapViews.textViews
          );
          SatelliteProxy.drawColor(that.mapViews.gridViews, d);
          // eslint-disable-next-line vue/no-mutating-props
          that.mapViews.textViews = textViews;
          // eslint-disable-next-line vue/no-mutating-props
          that.mapViews.labelsLayer = labelsLayer;
          SatelliteProxy.drawColor({
            gridViews: that.mapViews.gridViews,
            gridDataDetail: d
          });
        }
      );
    },