-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
102 lines (100 loc) · 1.99 KB
/
data.js
File metadata and controls
102 lines (100 loc) · 1.99 KB
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
const defaultLocations = [
{
id: "terakawa",
name: "Terakawa Ramen",
lat: 39.95457,
lng: -75.20228,
image: "/images/ramen.jpeg"
},
{
id: "smokeyjoes",
name: "Smokey Joe's",
lat: 39.95474,
lng: -75.20264,
image: "/images/smokes.jpeg"
},
{
id: "houston",
name: "Houston Market",
lat: 39.95115,
lng: -75.19383,
image: "images/houston.jpg"
},
{
id: "commons",
name: "1920 Commons",
lat: 39.95250,
lng: -75.19920,
image: "/images/commons.jpg"
},
{
id: "sweetgreen",
name: "Sweetgreen",
lat: 39.95453,
lng: -75.20100,
image: "/images/sweetgreen.jpg.webp"
},
{
id: "greeklady",
name: "Greek Lady",
lat: 39.95347,
lng: -75.20289,
image: "/images/greeklady.jpg"
},
{
id: "allegro",
name: "Allegro Pizza",
lat: 39.95171,
lng: -75.20292,
image: "/images/allegropizza.png.avif"
},
{
id: "hipcityveg",
name: "HipCityVeg",
lat: 39.95158,
lng: -75.19066,
image: "/images/hipcityveg.png"
},
{
id: "goldie",
name: "Goldie",
lat: 39.95372,
lng: -75.19260,
image: "/images/goldie.jpg"
},
{
id: "dimsumhouse",
name: "Dim Sum House",
lat: 39.95648,
lng: -75.20118,
image: "/images/dimsum.jpg"
},
{
id: "ramenbar",
name: "Ramen Bar",
lat: 39.95462,
lng: -75.20387,
image: "/images/ramenbar.jpg"
},
{
id: "honeygrow",
name: "Honeygrow",
lat: 39.95576,
lng: -75.19703,
image: "/images/honeygrow.jpeg"
},
{
id: "sabrinas",
name: "Sabrina’s Café",
lat: 39.96027,
lng: -75.19089,
image: "/images/sabrinas.jpeg"
},
{
id: "handynasty",
name: "Han Dynasty",
lat: 39.95853,
lng: -75.19591,
image: "/images/handynasty.jpg"
}
];