-
Notifications
You must be signed in to change notification settings - Fork 126
/
index.json
125 lines (125 loc) · 2.92 KB
/
index.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"$jason": {
"head": {
"title": "map",
"styles": {
"padded": {
"padding": "20",
"font": "HelveticaNeue-Bold",
"size": "20"
}
}
},
"body": {
"header": {
"menu": {
"text": "View JSON",
"href": {
"url": "https://github.com/Jasonette/Jasonpedia/blob/gh-pages/view/component/map/index.json",
"view": "web"
}
}
},
"sections": [{
"header": {
"type": "vertical",
"style": {
"padding": "0"
},
"components": [{
"type": "label",
"style": {
"background": "#f5f5f5",
"padding": "10"
},
"text": "Map in a header"
}, {
"type": "map",
"region": {
"coord": "40.7197614,-73.9909211",
"width": "200",
"height": "200"
},
"style": {
"width": "100%",
"height": "150"
}
}]
},
"items": [{
"type": "label",
"class": "padded",
"text": "scroll down to see more"
}, {
"type": "label",
"class": "padded",
"text": "scroll down to see more"
}, {
"type": "label",
"class": "padded",
"text": "scroll down to see more"
}, {
"type": "label",
"class": "padded",
"text": "scroll down to see more"
}, {
"type": "label",
"class": "padded",
"text": "scroll down to see more"
}, {
"type": "label",
"class": "padded",
"text": "scroll down to see more"
}]
}, {
"header": {
"type": "label",
"style": {
"background": "#f5f5f5"
},
"text": "Map with 200x200 region"
},
"items": [{
"type": "map",
"region": {
"coord": "40.7197614,-73.9909211",
"width": "200",
"height": "200"
},
"style": {
"width": "100%",
"height": "300"
}
}]
}, {
"header": {
"type": "label",
"style": {
"background": "#f5f5f5"
},
"text": "Map with pins"
},
"items": [{
"type": "map",
"region": {
"coord": "40.7197614,-73.9909211",
"width": "100",
"height": "100"
},
"pins": [{
"title": "This is a pin",
"description": "It really is.",
"coord": "40.7197614,-73.9909211",
"style": {
"selected": "true"
}
}],
"style": {
"width": "100%",
"height": "300"
}
}]
}]
}
}
}