-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.ts
56 lines (56 loc) · 1.28 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
49
50
51
52
53
54
55
56
export interface MapOptions {
background: string;
color1: string;
color2: string;
color3: string;
mapCenterFromVars: boolean;
latitudeVar: string;
longitudeVar: string;
showSidebar: boolean;
showViewControls: boolean;
enableScrolling: boolean;
enableEditing: boolean;
layer1: boolean;
mapjsonL1: string;
nodeHighlightL1: string;
srcFieldL1: string;
dstFieldL1: string;
inboundValueFieldL1: string;
outboundValueFieldL1: string;
endpointIdL1: string;
layer2: boolean;
mapjsonL2: string;
nodeHighlightL2: string;
srcFieldL2: string;
dstFieldL2: string;
inboundValueFieldL2: string;
outboundValueFieldL2: string;
endpointIdL2: string;
layer3: boolean;
mapjsonL3: string;
nodeHighlightL3: string;
srcFieldL3: string;
dstFieldL3: string;
inboundValueFieldL3: string;
outboundValueFieldL3: string;
endpointIdL3: string;
startLat: number;
startLng: number;
startZoom: number;
editMode: boolean;
legendL1: boolean;
legendL2: boolean;
legendL3: boolean;
layerName1: string;
layerName2: string;
layerName3: string;
nodeWidthL1: number;
nodeWidthL2: number;
nodeWidthL3: number;
edgeWidthL1: number;
edgeWidthL2: number;
edgeWidthL3: number;
pathOffsetL1: number;
pathOffsetL2: number;
pathOffsetL3: number;
}