-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestaurant.js
78 lines (78 loc) · 1.87 KB
/
restaurant.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
const restaurants = [
{
"restaurantName":"Bronco",
"address":"39 Rue des Petites Écuries, 75010 Paris",
"lat":48.8737815,
"long":2.3501649,
"ratings":[
{
"stars":4,
"comment":"Great! But not many veggie options."
},
{
"stars":5,
"comment":"My favorite restaurant!"
}
]
},
{
"restaurantName":"Babalou",
"address":"4 Rue Lamarck, 75018 Paris",
"lat":48.8865035,
"long":2.3442197,
"ratings":[
{
"stars":5,
"comment":"Tiny pizzeria next to Sacre Coeur!"
},
{
"stars":3,
"comment":"Meh, it was fine."
}
]
},
{
"restaurantName":"Brauhaus Georgbräu",
"address":"Spreeufer 4<br/>Mitte, 10178 Berlin",
"lat":52.51656,
"long":13.40519,
"ratings":[
{
"stars":4,
"comment":"Very good!"
},
{
"stars":2,
"comment":"Meh, it was fine."
},
{
"stars":1,
"comment":"Meh, it was fine."
},
{
"stars":2,
"comment":"Not too nice."
}
]
},
{
"restaurantName":"Brechts",
"address":"Schiffbauerdamm 6<br/>Mitte, 10117 Berlin",
"lat":52.52151,
"long":13.38602,
"ratings":[
{
"stars":5,
"comment":"Nice place to eat."
},
{
"stars":5,
"comment":"Great!"
},
{
"stars":4,
"comment":"Meh, it was fine."
}
]
}
]