-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameData.js
88 lines (86 loc) · 1.75 KB
/
gameData.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const gameArea = {
"type": "Polygon",
"coordinates": [
[
[
12.544240951538086,
55.77594546428934
],
[
12.549219131469727,
55.77502825125135
],
[
12.568359375,
55.77604201177451
],
[
12.578487396240234,
55.7767661102896
],
[
12.573423385620117,
55.79467119920912
],
[
12.57059097290039,
55.795877445664104
],
[
12.544240951538086,
55.77594546428934
]
]
]
}
const players = [
{
"type": "Feature",
"properties": {
"name": "Team1-inside"
},
"geometry": {
"type": "Point",
"coordinates": [
12.567672729492188,
55.78670903555303
]
}
},
{
"type": "Feature",
"properties": {
"name": "Team2-inside"
},
"geometry": {
"type": "Point",
"coordinates": [
12.561578750610352,
55.779758908094266
]
}
},
{
"type": "Feature",
"properties": {"name":"Team3-outside"},
"geometry": {
"type": "Point",
"coordinates": [
12.551965713500977,
55.788349856956444
]
}
},
{
"type": "Feature",
"properties": {"name":"Team4-outside"},
"geometry": {
"type": "Point",
"coordinates": [
12.568788528442383,
55.77396618813479
]
}
}
]
module.exports = {gameArea,players}