-
Notifications
You must be signed in to change notification settings - Fork 28
/
data.example.js
54 lines (54 loc) · 1.03 KB
/
data.example.js
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
{
"countries" : {
"gb" : {
"coords" : {
"ne" : {
"lat" : 56.423256,
"lng" : -1.39493
},
"sw" : {
"lat" : 50.663662,
"lng" : -4.910555
}
},
"name" : "United Kingdom",
"published" : true,
"zoom" : 9
},
"us" : {
"coords" : {
"ne" : {
"lat" : 44.644828,
"lng" : -66.895662
},
"sw" : {
"lat" : 26.51186,
"lng" : -123.635286
}
},
"name" : "United States",
"published" : true,
"zoom" : 6
}
},
"accents" : {
"manchester" : {
"coords" : {
"lat" : 53.481154,
"lng" : -2.243506
},
"country" : "gb",
"name" : "Manchester (Mancunian)",
"videos" : [ "GsrZk99s9LY", "eB2QbnyBe6s" ]
},
"texas" : {
"coords" : {
"lat" : 31.485542,
"lng" : -99.101441
},
"country" : "us",
"name" : "Texas",
"videos" : [ "s3AuqeI51mY", "IzyTLJWNkas" ]
}
}
}