-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbeachConstants.js
48 lines (47 loc) · 1001 Bytes
/
beachConstants.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
const beachNames = {
'1': {
name:'Marie Curtis Park East Beach',
map: '43.585563,-79.540732'
},
'2': {
name: 'Sunnyside Beach',
map: '43.637432,-79.455954'
},
'3': {
name: "Hanlan's Point Beach",
map: '43.619325,-79.393254'
},
'4': {
name: 'Gibraltar Point Beach',
map: '43.612487,-79.382173'
},
'5': {
name: 'Centre Island Beach',
map: '43.616072,-79.373826'
},
'6': {
name: "Ward's Island Beach",
map: '43.630088,-79.352318'
},
'7': {
name: 'Cherry Beach',
map: '43.636742,-79.344117'
},
'8': {
name: 'Woodbine Beaches',
map: '43.66381,-79.305057'
},
'9': {
name: 'Kew Balmy Beach',
map: '43.668559,-79.290057'
},
'10': {
name: "Bluffer's Beach Park",
map: '43.71363,-79.225948'
},
'11': {
name: 'Rouge Beach',
map: '43.793217,-79.118217'
}
};
module.exports = beachNames;