This repository was archived by the owner on Jun 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrestaurants.js
169 lines (168 loc) · 3.83 KB
/
restaurants.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
const restaurants = [
{
id: '27BE498A-5841-40DF-877A-CE6686073B0D',
name: 'Portillo’s',
description: '',
address: '100 W. Ontario',
city: 'Chicago',
state: 'IL',
zip: 60654,
latitude: -87.6315139,
longitude: 41.89352030000001
},
{
id: '478452A9-6C9E-4D44-AA80-92EFDECC45A6',
name: 'Murphy’s Red Hots',
description: '',
address: '1211 West Belmont Ave',
city: 'Chicago',
state: 'IL',
zip: 60657,
latitude: -87.65953789999999,
longitude: 41.9396292
},
{
id: '5500BA8D-289F-47D1-A43D-EE51E5EF41A7',
name: 'Mustard’s Last Stand',
description: '',
address: '1613 Central Street',
city: 'Evanston',
state: 'IL',
zip: 60201,
latitude: -87.6948779,
longitude: 42.0645223
},
{
id: 'EB8941AC-C3AD-4263-B97D-B7A29B36FB5F',
name: 'Chicago\'s Dog House',
description: '',
address: '816 West Fullerton',
city: 'Chicago',
state: 'IL',
zip: 60614,
latitude: -87.64953930000001,
longitude: 41.9255674
},
{
id: '6BC2C5D2-BA6B-475E-A680-15F47D66CE4B',
name: 'Wrigleyville Dogs',
description: 'Located across from Wrigley Field in Wrigleyville.',
address: '3737 North Clark',
city: 'Chicago',
state: 'IL',
zip: 60057,
latitude: -87.658481,
longitude: 41.9500302
},
{
id: 'EE1CAA5B-B271-4E08-9ED8-5C05D9B1EE94',
name: 'Gene & Jude’s Red Hot Stand',
description: '',
address: '2720 N River Rd',
city: 'River Grove',
state: 'IL',
zip: 60171,
latitude: -87.8466948,
longitude: 41.9299848
},
{
id: 'E891C174-23ED-4495-A9D1-39A26F58C394',
name: 'Weiner’s Circle',
description: '',
address: '2622 North Clark',
city: 'Chicago',
state: 'IL',
zip: 60657,
latitude: -87.6438051,
longitude: 41.9301457
},
{
id: 'D1E9ABF7-6A37-4138-80E3-E6983B93706A',
name: 'Redhot Ranch',
description: '',
address: '2072 N Western Ave',
city: 'Chicago',
state: 'IL',
zip: 60647,
latitude: -87.68780199999999,
longitude: 41.9198013
},
{
id: '2A3EE6F0-3970-4B7E-9553-A4095E5525DA',
name: 'Superdawg',
description: '',
address: '6363 North Milwaukee',
city: 'Chicago',
state: 'IL',
zip: 60646,
latitude: -87.7870165,
longitude: 41.9967617
},
{
id: 'F24B37E4-C89B-48AA-871B-46E5DE47118F',
name: 'Wolfy\'s',
description: '',
address: '2734 West Peterson',
city: 'Chicago',
state: 'IL',
zip: 60659,
latitude: -87.6985935,
longitude: 41.9907261
},
{
id: 'CC3863B8-772C-4BFE-AFD1-9026D6F28EAD',
name: 'Fatso\’s Last Stand',
description: '',
address: '2258 W Chicago Ave',
city: 'Chicago',
state: 'IL',
zip: 60622,
latitude: -87.68425599999999,
longitude: 41.8959726
},
{
id: 'A12244BA-A9CA-4AE0-83FD-40AA3CA178C8',
name: 'Morrie O\'Malley\'s Hot Dogs',
description: '',
address: '3501 S Union Ave',
city: 'Chicago',
state: 'IL',
zip: 60609,
latitude: -87.64340059999999,
longitude: 41.8306589
},
{
id: '96B7CB80-6DC4-445F-8925-69316B222DCC',
name: 'Byron\'s',
description: '',
address: '1017 West Irving Park Road',
city: 'Chicago',
state: 'IL',
zip: 60640,
latitude: -87.6552421,
longitude: 41.9543355
},
{
id: '96B7CB80-6DC4-445F-8925-69316B222DCC',
name: 'Hot \'G\' Dog',
description: '',
address: '5009 N Clark St',
city: 'Chicago',
state: 'IL',
zip: 60640,
latitude: -87.6677351,
longitude: 41.9728272
},
{
id: '2C33902E-C049-4667-A8E8-5C66C5E2875E',
name: 'Original Jimmy’s Red Hots',
description: '',
address: '4000 W Grand Ave',
city: 'Chicago',
state: 'IL',
zip: 60651,
latitude: -87.72659279999999,
longitude: 41.9064253
}
]
module.exports = restaurants