refactor(earth): extract satellite config to SATELLITE_CONFIG constants

This commit is contained in:
rayd1o
2026-03-19 18:00:22 +08:00
parent bb6b18fe3b
commit 4f922f13d1
2 changed files with 12 additions and 5 deletions

View File

@@ -53,6 +53,13 @@ export const CABLE_STATE = {
LOCKED: 'locked'
};
export const SATELLITE_CONFIG = {
maxCount: 2000,
dotSize: 1.5,
trailLength: 30,
apiPath: '/api/v1/visualization/geo/satellites'
};
export const GRID_CONFIG = {
latitudeStep: 10,
longitudeStep: 30,