-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.js
46 lines (43 loc) · 893 Bytes
/
content.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
var center = [52.2772, 8.0432];
var stands = {"features":[
{"type": "Feature",
"geometry":
{
"type": "Point",
"coordinates": [8.0418, 52.27745]
},
"properties": {
"name": "Beispielstand 1",
"description": "Hier kann noch Text stehen",
"tags": ["Essen", "Burger", "Vegetatisch"],
"icon": "fa-cutlery"
}
},
{"type": "Feature",
"geometry":
{
"type": "Point",
"coordinates": [8.0418, 52.27717]
},
"properties": {
"name": "Beispielstand 2",
"description": "Hier kann noch Text stehen",
"tags": ["Spielzeug"],
"icon": "fa-child"
}
},
{"type": "Feature",
"geometry":
{
"type": "Point",
"coordinates": [8.04192, 52.27748]
},
"properties": {
"name": "Beispielstand 3",
"description": "Hier gibt es Glühwein",
"tags": ["Getränke"],
"icon": "fa-coffee"
}
},
]
};