docs: update production workflow design and runtime changes

This commit is contained in:
2026-06-14 18:47:00 +08:00
parent 58a87706ef
commit b1c59051b9
41 changed files with 2042 additions and 134 deletions
+5 -2
View File
@@ -38,8 +38,11 @@ export const TILE_LAYER_OPTIONS = {
maxZoom: 16,
maxNativeZoom: 16,
tms: false,
updateWhenIdle: true,
keepBuffer: 4,
updateWhenIdle: false,
updateWhenZooming: false,
keepBuffer: 2,
reuseTiles: true,
crossOrigin: 'anonymous',
};
export const TILE_LAYER_BOUNDS = [
+2 -3
View File
@@ -10,8 +10,8 @@ const TASK_UI_POLICIES = {
SCAN_HAZARD: { label: '灾害点同步', featureScope: 'hazard' },
UNPACK_ARCHIVES: { label: 'LT-1 解包', featureScope: 'data_monitor' },
UNPACK_SENTINEL1: { label: 'Sentinel-1 解包', featureScope: 'data_monitor' },
GF3_UNPACK: { label: 'GF3 解包', featureScope: 'data_monitor' },
GF3_BATCH_PROCESS: { label: 'GF3 预处理', featureScope: 'data_monitor' },
GF3_UNPACK: { label: 'GF3 legacy 解包', featureScope: 'data_monitor' },
GF3_BATCH_PROCESS: { label: 'GF3 legacy 预处理', featureScope: 'data_monitor' },
GF3_SARSCAPE_PRODUCE: { label: 'GF3 SARscape 生产', featureScope: 'data_monitor' },
GF3_SARSCAPE_SYNC: { label: 'GF3 SARscape 入库', featureScope: 'data_monitor' },
GF3_SARSCAPE_CLEAN: { label: 'GF3 中间清理', featureScope: 'data_monitor' },
@@ -73,4 +73,3 @@ export function isTaskGloballyBlocking(taskType) {
export function getTaskTypeLabel(taskType) {
return getTaskUiPolicy(taskType).label;
}