-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquarantine_facilities.js
83 lines (83 loc) · 2.09 KB
/
quarantine_facilities.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
var facilities_js = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 120.991153,14.564909 ]
},
"properties": {
"Facilities":"Ninoy Aquino Statidum",
"Address":"Rizal Memorial Sports Complex, Malate, Manila, 1004 Metro Manila",
"Capacity":"116 beds",
"Status":"For moderate coronavirus patients"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 120.983098,14.555246 ]
},
"properties": {
"Facilities":"Philippine International Convention Center",
"Address":"Vicente Sotto St, Pasay, Metro Manila",
"Capacity":"294 beds",
"Status":"For mild to moderate coronavirus patients"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 120.987449,14.551957 ]
},
"properties": {
"Facilities":"World Trade Center",
"Address":"2/F WTCMM Building, 1300, Pasay Extension corner, Sen. Gil J. Puyat Ave, Pasay, Metro Manila",
"Capacity":"502 beds",
"Status":"N/A"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 120.994059,14.562379 ]
},
"properties": {
"Facilities":"Rizal Memorial Coliseum",
"Address":"Ocampo St, Malate, Manila, 1004 Metro Manila",
"Capacity":"112 beds",
"Status":"N/A"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 120.511601,15.187902 ]
},
"properties": {
"Facilities":"ASEAN Convention Center",
"Address":"Marcos Village, Pampanga",
"Capacity":"150 beds",
"Status":"N/A"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 120.533389,15.344267 ]
},
"properties": {
"Facilities":"New Clark City National Government Administrative Center",
"Address":"New Clark City, Capas, Tarlac",
"Capacity":"668 beds",
"Status":"N/A"
}
}
]
}