From da0d06cb06ef3fc55d88cb4a9a52505ac35c03e6 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期三, 26 三月 2025 15:12:31 +0800
Subject: [PATCH] 走航融合(待完成)

---
 src/model/SatelliteGrid.js |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/src/model/SatelliteGrid.js b/src/model/SatelliteGrid.js
index cb547e9..ad01ca9 100644
--- a/src/model/SatelliteGrid.js
+++ b/src/model/SatelliteGrid.js
@@ -629,6 +629,26 @@
     return heatTag;
   }
 
+  drawHeatGrid2(tag, headGridDataDetailList) {
+    const heatTag = `heat-${tag}`;
+    if (this.mapViewsMap.has(heatTag)) {
+      this.changeVisibility({
+        tags: [heatTag],
+        showGridViews: true
+      });
+    } else {
+      this.drawTagGrid({
+        tag: heatTag,
+        data: headGridDataDetailList,
+        extData: {
+          name: `璧拌埅鐑姏鍥� - ${heatTag}`,
+          type: 2
+        }
+      });
+    }
+    return heatTag;
+  }
+
   search(gdd, width, height, eachwidth, eachheight, searchLength) {
     function getCellWidthRange(cellId, width, height) {
       const total = width * height;

--
Gitblit v1.9.3