-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.ts
48 lines (48 loc) · 1.04 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export interface MapOptions {
color1: string;
color2: string;
color3: string;
layer1: boolean;
mapjsonL1: string;
nodeHighlightL1: string;
srcFieldL1: string;
dstFieldL1: string;
valFieldL1: string;
endpointIdL1: string;
layer2: boolean;
mapjsonL2: string;
nodeHighlightL2: string;
srcFieldL2: string;
dstFieldL2: string;
valFieldL2: string;
endpointIdL2: string;
layer3: boolean;
mapjsonL3: string;
nodeHighlightL3: string;
srcFieldL3: string;
dstFieldL3: string;
valFieldL3: string;
endpointIdL3: string;
startLat: number;
startLng: number;
startZoom: number;
editMode: boolean;
legendL1: boolean;
legendL2: boolean;
legendL3: boolean;
layerName1: string;
layerName2: string;
layerName3: string;
nodeWidth: number;
edgeWidth: number;
pathOffset: number;
// nodeWidthL1: number;
// edgeWidthL1: number;
// pathOffsetL1: number;
// nodeWidthL2: number;
// edgeWidthL2: number;
// pathOffsetL2: number;
// nodeWidthL3: number;
// edgeWidthL3: number;
// pathOffsetL3: number;
}