-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmagic.js
257 lines (237 loc) · 7.05 KB
/
magic.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
var map;
var markers = [];
var infoWindow;
var currLatitude;
var currLongitude;
function initMap() {
var Delhi = {
lat: 28.7041,
lng: 77.1025,
}
map = new google.maps.Map(document.getElementById('map'), {
center: Delhi,
zoom: 15,
styles: [
{elementType: 'geometry', stylers: [{color: '#242f3e'}]},
{elementType: 'labels.text.stroke', stylers: [{color: '#242f3e'}]},
{elementType: 'labels.text.fill', stylers: [{color: '#746855'}]},
{
featureType: 'administrative.locality',
elementType: 'labels.text.fill',
stylers: [{color: '#d59563'}]
},
{
featureType: 'poi',
elementType: 'labels.text.fill',
stylers: [{color: '#d59563'}]
},
{
featureType: 'poi.park',
elementType: 'geometry',
stylers: [{color: '#263c3f'}]
},
{
featureType: 'poi.park',
elementType: 'labels.text.fill',
stylers: [{color: '#6b9a76'}]
},
{
featureType: 'road',
elementType: 'geometry',
stylers: [{color: '#38414e'}]
},
{
featureType: 'road',
elementType: 'geometry.stroke',
stylers: [{color: '#212a37'}]
},
{
featureType: 'road',
elementType: 'labels.text.fill',
stylers: [{color: '#9ca5b3'}]
},
{
featureType: 'road.highway',
elementType: 'geometry',
stylers: [{color: '#746855'}]
},
{
featureType: 'road.highway',
elementType: 'geometry.stroke',
stylers: [{color: '#1f2835'}]
},
{
featureType: 'road.highway',
elementType: 'labels.text.fill',
stylers: [{color: '#f3d19c'}]
},
{
featureType: 'transit',
elementType: 'geometry',
stylers: [{color: '#2f3948'}]
},
{
featureType: 'transit.station',
elementType: 'labels.text.fill',
stylers: [{color: '#d59563'}]
},
{
featureType: 'water',
elementType: 'geometry',
stylers: [{color: '#17263c'}]
},
{
featureType: 'water',
elementType: 'labels.text.fill',
stylers: [{color: '#515c6d'}]
},
{
featureType: 'water',
elementType: 'labels.text.stroke',
stylers: [{color: '#17263c'}]
}
]
});
infoWindow = new google.maps.InfoWindow();
searchHospitals();
setOnClickListener();
getLocation();
}
function displayhospitals (hospitals) {
var hospitalsList ="";
var address;
var phone;
hospitals.forEach(function(hospital, index) {
address = hospital.addressLines;
phone = hospital.phoneNumber;
numBed = hospitals.numBeds;
hospitalsList += `
<div class="hospital-container">
<div class="hospital-container-background">
<div class="hospital-info-container">
<div class="hospital-address">
<span>${address[0]}</span>
<span>${address[1]}</span>
</div>
<div class="hospital-phone-number">Ph: ${phone}</div>
</div>
<div class="hospital-number-container">
<div class="hospital-number">${index+1}</div>
</div>
</div>
</div>
`
});
document.querySelector('.hospitals-list').innerHTML = hospitalsList;
}
function showhospitalsMarker(hospitals, search) {
var latlng;
var name;
var address;
var statusText;
var phoneNumber;
var numBed;
var bounds = new google.maps.LatLngBounds();
hospitals.forEach(function(hospital, index) {
latlng = new google.maps.LatLng(
hospital.coordinates.latitude,
hospital.coordinates.longitude);
name = hospital.name;
address = hospital.addressLines[0];
statusText = hospital.openTime;
phoneNumber = hospital.phoneNumber;
numBed = hospital.numBeds;
var rating = hospital.rating;
createMarker(latlng, name, address, statusText, phoneNumber, numBed, index, rating);
setMarkerDirections(hospital.coordinates.latitude, hospital.coordinates.longitude, index);
setMarkerAnimations(markers[index], search)
bounds.extend(latlng);
});
map.fitBounds(bounds);
}
function setMarkerAnimations (marker, search) {
if (search == true)
marker.setAnimation(google.maps.Animation.BOUNCE);
else
marker.setAnimation(google.maps.Animation.DROP);
}
function createMarker(latlng, name, address, statusText, phoneNumber, numBed, index, rating) {
var html = `
<div class="hospital-info-window">
<div class="hospital-info-name">
${name}   ${rating}<span class="fa fa-star checked fa-xs"></span>
</div>
<div class="hospital-info-status">
${statusText}
</div>
<div id="hospital-address-id" class="hospital-info-address">
<div class="circle">
<i class="fas fa-location-arrow"></i>
</div>
${address}
</div>
<div class="hospital-info-phone">
<div class="circle">
<i class="fas fa-phone-alt"></i>
</div>
${phoneNumber}
</div>
<div class="hospital-info-beds">
<div class="circle">
<i class="fas fa-procedures"></i>
</div>
${numBed}
</div>
</div>
`
var marker = new google.maps.Marker({
map: map,
position: latlng,
label: `${index+1}`,
});
google.maps.event.addListener(marker, 'mouseover', function() {
infoWindow.setContent(html);
infoWindow.open(map, marker);
});
markers.push(marker);
}
function setMarkerDirections(lat, long, index) {
google.maps.event.addListener(markers[index], 'click', function() {
setOnClickListenerAddress(lat, long);
});
}
function setOnClickListener() {
var hospitalElements = document.querySelectorAll('.hospital-container');
hospitalElements.forEach(function(elem, index) {
elem.addEventListener('click', function() {
google.maps.event.trigger(markers[index], 'mouseover');
})
})
}
function clearLocations(){
infoWindow.close();
for (var i = 0; i < markers.length; i++) {
markers[i].setMap(null);
}
markers.length = 0;
}
function searchHospitals() {
var search = false;
var zipCode = document.getElementById('zip-code-input').value;
if (zipCode) {
var foundHospitals = [];
hospitals.forEach(function(hospital){
var postal = hospital.zipCode.substring(0,5);
if (zipCode == hospital.pincode || zipCode == postal) {
foundHospitals.push(hospital);
} else {
}
});
search = true;
clearLocations();
} else {
foundHospitals = hospitals;
}
displayhospitals(foundHospitals);
showhospitalsMarker(foundHospitals, search);
}