-
Notifications
You must be signed in to change notification settings - Fork 0
/
locations.js
37 lines (37 loc) · 1.22 KB
/
locations.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
export const locations = [
{
name: 'Natal',
lat: -5.88,
lon: -35.17,
imgPath: 'img/natal.jpg',
description: 'Natal means Christmas, and we actually go there every Christmas. Beautiful beaches and quality time with the family!'
},
{
name: 'Zimbabwe',
lat: -19,
lon: 30,
imgPath: 'img/zimbabwe.jpg',
description: 'Spent a month in Zimbabwe in 2019, including 2 weeks traveling on foot, quite an adventure! Nyika Irikufamba ✌️'
},
{
name: 'Paraty',
lat: -23.22,
lon: -44.71,
imgPath: 'img/paraty.jpg',
description: "Historical town of Rio's Green Coast, with many nature and cultural attractions."
},
{
name: 'Pantanal',
lat: -17.7,
lon: -57.39,
imgPath: 'img/pantanal.jpg',
description: "The world's largest tropical wetland and largest flooded grasslands, home of unique biodiversity, with iconic animals like the jaguar and tuiuiú."
},
{
name: 'Lyon',
lat: 45.75,
lon: 4.84,
imgPath: 'img/lyon.jpg',
description: "This was my home in 2017-2019, when I did an academic exchange at Ecole Centrale de Lyon."
},
]