| 1234567891011121314151617 |
- export default class Global {
- static airspaceType: {
- circle: number;
- line: number;
- polygon: number;
- };
- static pointTypes: {
- nav: number;
- line: number;
- point: number;
- };
- static amapLineWidth: number;
- static amapStrokeColor: string;
- static amapFillColor: string;
- static heightStandards: Map<string, number>;
- static heightStandardsById: Map<any, any>;
- }
|