feat(map): add functional sector grid v2

This commit is contained in:
Codex
2026-08-06 11:22:45 +03:00
parent 6f1fcb1eb0
commit d4827009d4
15 changed files with 2902 additions and 76 deletions
+7
View File
@@ -485,6 +485,13 @@ const mapPageSettingsPatchInputSchema = {
graticuleLineWidthPx: { type: "number", minimum: 1, maximum: 3 },
graticuleColor: { type: "string", pattern: "^#[0-9A-Fa-f]{6}$" },
graticuleOpacity: { type: "number", minimum: 0, maximum: 100 },
majorLinesEnabled: { type: "boolean" },
majorLabelsEnabled: { type: "boolean" },
majorLineWidthMultiplier: { type: "number", minimum: 1, maximum: 8 },
volumeEnabled: { type: "boolean" },
volumeMinimumHeightMeters: { type: "number", minimum: -1000, maximum: 10000 },
volumeMaximumHeightMeters: { type: "number", minimum: -1000, maximum: 10000 },
volumeBandHeightMeters: { type: "number", minimum: 1, maximum: 10000 },
},
},
},