-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
346 lines (277 loc) · 10.1 KB
/
main.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
$(document).ready(function () {
//Toggle sidebar button
$("#sidebarCollapse").on("click", function () {
$("#sidebar").toggleClass("active");
$(this).toggleClass("active");
});
//Declare table metadata array.
hospitalsTableMetadata = [];
//Declare hospitals array.
hamiltonHospitals = [];
//Get data from the hamilton_hospitals table on csunix, parses it into a
//JavaScript object, and sets attributes accordingly.
$.ajax({
type: "post",
url: "update.php",
data: "JSON",
success: function (data) {
hospitalsTableMetadata = JSON.parse(data);
for (
i = 0; i < hospitalsTableMetadata["hospitalsTableMetadata"][0].length; i++
) {
hamiltonHospitals.push({
OBJECTID: hospitalsTableMetadata["hospitalsTableMetadata"][0][i],
ADDRESS: hospitalsTableMetadata["hospitalsTableMetadata"][1][i],
COMMUNITY: hospitalsTableMetadata["hospitalsTableMetadata"][2][i],
LATITUDE: hospitalsTableMetadata["hospitalsTableMetadata"][3][i],
LONGITUDE: hospitalsTableMetadata["hospitalsTableMetadata"][4][i],
NAME: hospitalsTableMetadata["hospitalsTableMetadata"][5][i],
PHONE: hospitalsTableMetadata["hospitalsTableMetadata"][6][i]
});
}
}
});
//Instantiate an array for pushpins.
pushArray = [];
// listHospitalsJSON = JSON.stringify(hamiltonHospitals, null, "\t");
/**
* Prompts the user to allow the use of their location - stores and displays their location if they agree,
* handles errors if they disagree.
* @param {type} error
*/
navigator.geolocation.getCurrentPosition(
//Success function
function (p) {
currentLat = p.coords.latitude;
currentLong = p.coords.longitude;
loadMap();
},
//Error function
function showError(error) {
var x = document.getElementById("loc");
switch (error.code) {
case error.PERMISSION_DENIED:
x.innerHTML = "User denied the request for Geolocation.";
break;
case error.POSITION_UNAVAILABLE:
x.innerHTML = "Location information is unavailable.";
break;
case error.TIMEOUT:
x.innerHTML = "The request to get user location timed out.";
break;
case error.UNKNOWN_ERROR:
x.innerHTML = "An unknown error occurred.";
break;
}
}
);
//Loads the map and default pushpins to the screen
function loadMap() {
map = new Microsoft.Maps.Map(document.getElementById("mapcontainer"), {
center: new Microsoft.Maps.Location(currentLat, currentLong)
});
currentPosition = new Microsoft.Maps.Location(currentLat, currentLong);
centerPushpin = new Microsoft.Maps.Pushpin(currentPosition, {
color: 'red'
});
var infobox = new Microsoft.Maps.Infobox(centerPushpin.getLocation(), {
visible: false,
autoAlignment: true
});
infobox.setMap(map);
map.entities.push(centerPushpin);
//Generate array of default pushpins
for (var i = 0; i < hamiltonHospitals.length; i++) {
//Generate location object for the long and lat of the current Hospital
var location = new Microsoft.Maps.Location(
hamiltonHospitals[i].LATITUDE,
hamiltonHospitals[i].LONGITUDE
);
//Generate a pushpin for the current Hospital
var pushpin = new Microsoft.Maps.Pushpin(location, {
color: 'blue'
});
//Store metadata about the pushpin
pushpin.metadata = {
title: hamiltonHospitals[i].NAME,
description: "<strong>" +
hamiltonHospitals[i].ADDRESS +
"</strong>" +
", " +
hamiltonHospitals[i].COMMUNITY +
"</br>" +
hamiltonHospitals[i].PHONE,
phone: hamiltonHospitals[i].PHONE,
community: hamiltonHospitals[i].COMMUNITY,
type: hamiltonHospitals[i].TYPE,
latitude: hamiltonHospitals[i].LATITUDE,
longitude: hamiltonHospitals[i].LONGITUDE
};
Microsoft.Maps.Events.addHandler(pushpin, "click", function (args) {
for (i = 0; i < pushArray.length; i++) {
pushArray[i].setOptions({
color: 'blue'
})
}
args.target.setOptions({
color: 'green'
});
infobox.setOptions({
location: args.target.getLocation(),
title: args.target.metadata.title,
description: args.target.metadata.description,
city: args.target.metadata.city,
phone: args.target.metadata.phone,
visible: true,
});
dirLocation = args.target.getLocation();
dirName = args.target.metadata.title;
});
//Stores each created pushpin and their respective metadata in an
//array of pushpins.
pushArray.push(pushpin);
//Adds pushpins to the map.
map.entities.push(pushpin);
//Add centerPushpin to the map.
map.entities.push(centerPushpin);
//centerPushpin infobox
Microsoft.Maps.Events.addHandler(centerPushpin, "click", function (args) {
infobox.setOptions({
location: args.target.getLocation(),
title: "Current Location",
description: "You are here.",
visible: true
});
});
}
}
$("#getdirections").click(function (e) {
e.preventDefault();
loadMap();
Microsoft.Maps.loadModule('Microsoft.Maps.Directions', function () {
directionsManager = new Microsoft.Maps.Directions.DirectionsManager(map);
// Set Route Mode to driving
directionsManager.setRequestOptions({
routeMode: Microsoft.Maps.Directions.RouteMode.driving
});
var waypoint1 = new Microsoft.Maps.Directions.Waypoint({
address: dirName,
location: dirLocation
});
var waypoint2 = new Microsoft.Maps.Directions.Waypoint({
address: 'Current Location',
location: new Microsoft.Maps.Location(currentLat, currentLong)
});
directionsManager.addWaypoint(waypoint1);
directionsManager.addWaypoint(waypoint2);
// Set the element in which the itinerary will be rendered
// directionsManager.setRenderOptions({ itineraryContainer: document.getElementById('printoutPanel') });
directionsManager.calculateDirections();
});
});
/* ----------------------------------------------------------------------------- */
//Duplicate "getLocation" code - for reference when moving the
//infoboxes by calling a function to get the current location.
function getLocation() {
navigator.geolocation.getCurrentPosition(
//Success function
function (p) {
currentLat = p.coords.latitude;
currentLong = p.coords.longitude;
loadMap();
},
//Error function
function showError(error) {
var x = document.getElementById("loc");
switch (error.code) {
case error.PERMISSION_DENIED:
x.innerHTML = "User denied the request for Geolocation.";
break;
case error.POSITION_UNAVAILABLE:
x.innerHTML = "Location information is unavailable.";
break;
case error.TIMEOUT:
x.innerHTML = "The request to get user location timed out.";
break;
case error.UNKNOWN_ERROR:
x.innerHTML = "An unknown error occurred.";
break;
}
}
);
//Loads the map and default pushpins to the screen
function loadMap() {
var map = new Microsoft.Maps.Map(
document.getElementById("mapcontainer"), {
center: new Microsoft.Maps.Location(currentLat, currentLong)
}
);
currentPosition = new Microsoft.Maps.Location(currentLat, currentLong);
centerPushpin = new Microsoft.Maps.Pushpin(currentPosition, {
color: "red"
});
var infobox = new Microsoft.Maps.Infobox(centerPushpin.getLocation(), {
visible: false,
autoAlignment: true
});
infobox.setMap(map);
map.entities.push(centerPushpin);
//Generate array of default pushpins
for (var i = 0; i < hamiltonHospitals.length; i++) {
//Generate location object for the long and lat of the current Hospital
var location = new Microsoft.Maps.Location(
hamiltonHospitals[i].LATITUDE,
hamiltonHospitals[i].LONGITUDE
);
//Generate a pushping for the current Hospital
var pushpin = new Microsoft.Maps.Pushpin(location, null);
//Store metadata about the pushpin
pushpin.metadata = {
title: hamiltonHospitals[i].NAME,
description: "<strong>" +
hamiltonHospitals[i].ADDRESS +
"</strong>" +
", " +
hamiltonHospitals[i].COMMUNITY +
"</br>" +
hamiltonHospitals[i].PHONE +
"</br>" +
'<a href = "#" id="link">Get directions</a>',
phone: hamiltonHospitals[i].PHONE,
community: hamiltonHospitals[i].COMMUNITY,
type: hamiltonHospitals[i].TYPE,
latitude: hamiltonHospitals[i].LATITUDE,
longitude: hamiltonHospitals[i].LONGITUDE
};
Microsoft.Maps.Events.addHandler(pushpin, "click", function (args) {
infobox.setOptions({
location: args.target.getLocation(),
title: args.target.metadata.title,
description: args.target.metadata.description,
city: args.target.metadata.city,
phone: args.target.metadata.phone,
visible: true
});
});
//Stores each created pushpin and their respective metadata in an
//array of pushpins.
pushArray.push(pushpin);
//Adds pushpins to the map.
map.entities.push(pushpin);
//Add centerPushpin to the map.
map.entities.push(centerPushpin);
//centerPushpin infobox
Microsoft.Maps.Events.addHandler(centerPushpin, "click", function (
args
) {
infobox.setOptions({
location: args.target.getLocation(),
title: "Current Location",
description: "You are here.",
visible: true
});
});
}
}
}
});