-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
43 lines (42 loc) · 1.2 KB
/
data.js
File metadata and controls
43 lines (42 loc) · 1.2 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
const dummyData = {
"type": "FeatureCollection",
"features": [
// USA Locations
{
"type": "Feature",
"properties": { "name": "San Francisco" },
"geometry": { "type": "Point", "coordinates": [-122.4194, 37.7749] }
},
{
"type": "Feature",
"properties": { "name": "Los Angeles" },
"geometry": { "type": "Point", "coordinates": [-118.2437, 34.0522] }
},
{
"type": "Feature",
"properties": { "name": "New York City" },
"geometry": { "type": "Point", "coordinates": [-74.0060, 40.7128] }
},
// Norway Locations 🇳🇴
{
"type": "Feature",
"properties": { "name": "Oslo" },
"geometry": { "type": "Point", "coordinates": [10.7522, 59.9139] }
},
{
"type": "Feature",
"properties": { "name": "Bergen" },
"geometry": { "type": "Point", "coordinates": [5.3242, 60.3913] }
},
{
"type": "Feature",
"properties": { "name": "Trondheim" },
"geometry": { "type": "Point", "coordinates": [10.3951, 63.4305] }
},
{
"type": "Feature",
"properties": { "name": "Tromsø" },
"geometry": { "type": "Point", "coordinates": [18.9560, 69.6496] }
}
]
};