-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
54 lines (54 loc) · 1.23 KB
/
config.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
module.exports = {
cities: [
{
name: "bangalore",
location: { lat: 12.9716, lng: 77.5946 }
},
{
name: "mumbai",
location: { lat: 19.076, lng: 72.8777 }
},
{
name: "new delhi",
location: {lat: 28.6139, lng: 77.2090}
},
{
name: "chennai",
location: { lat: 13.0827, lng: 80.2707 }
},
{
name: "hyderabad",
location: { lat: 17.3850, lng: 78.4867 }
},
{
name: "jaipur",
location: { lat: 26.9124, lng: 75.7873 }
},
{
name: "kolkata",
location: { lat: 22.5726, lng: 88.3639 }
},
{
name: "ahmedabad",
location: { lat: 23.0225, lng: 72.5714 }
},
{
name: "goa",
location: { lat: 15.2993, lng: 74.1240 }
},
{
name: "pune",
location: { lat: 18.5204, lng: 73.8567 }
},
{
name: "dubai",
location: { lat: 25.2048, lng: 55.2708 }
}
],
products: [
"ttd",
"fnb",
"events",
"fitness"
]
}