-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathelect-app.js
554 lines (483 loc) · 18 KB
/
elect-app.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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
// data locations
var precinct = {
// URL with {{LAT}} and {{LNG}}, callback to showPrecinctAndPoll
serviceUrl: "http://maps.cityofboston.gov/ArcGIS/rest/services/PublicProperty/Precincts/MapServer/0/query?text=&geometry=%7Bx%3A+{{LNG}}%2C+y%3A+{{LAT}}+%7D&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelIntersects&returnGeometry=true&outSR=4326&outFields=*&f=json&callback=showPrecinctAndPoll",
getList: function(precinctServiceResponse){
return precinctServiceResponse.features;
},
getName: function(precinctFeature){
var name = precinctFeature.attributes.NAME;
return "Ward " + name.substring(0,2) + ", Precinct " + name.substring(2);
},
getID: function(precinctFeature){
return precinctFeature.attributes.PRECINCTID.substring(2) * 1;
},
getWardID: function(precinctFeature){
return precinctFeature.attributes.PRECINCTID.substring(0,2) * 1;
},
getPolygon: function(precinctFeature){
// polygon coordinates [ [ [lat, lng], [lat, lng], [lat, lng] ] ]
// holes: [ [ outer latlngs ], [ inner latlngs ] ]
var rings = [ ];
for(var r=0; r<precinctFeature.geometry.rings.length;r++){
var ring = [ ];
for(var pt=0; pt<precinctFeature.geometry.rings[r].length; pt++){
ring.push([
precinctFeature.geometry.rings[r][pt][1],
precinctFeature.geometry.rings[r][pt][0]
]);
}
rings.push(ring);
}
return rings;
}
};
// set to null if you can directly use precinct's PRECINCTID === polling place's POLLINGPLACEID
var lookupTable = {
// URL with {{PRECINCTID}}, {{WARDID}}, callback to showPollMarker
serviceUrl: "http://maps.cityofboston.gov/ArcGIS/rest/services/PublicProperty/PollingPlaces/MapServer/2/query?where=Ward%3D{{WARDID}}%20AND%20Precinct%3D{{PRECINCTID}}&outFields=*&f=json&callback=showPollMarker",
pollingPlaceId: function(lookupData){
return lookupData.features[0].attributes.Voting_id;
}
};
var pollingPlace = {
// URL with {{POLLINGPLACEID}}, callback to showPoll
serviceUrl: "http://maps.cityofboston.gov/ArcGIS/rest/services/PublicProperty/PollingPlaces/MapServer/0/query?where=Voting+%3D+{{POLLINGPLACEID}}&returnGeometry=true&outFields=*&f=json&outSR=4326&callback=showPoll",
getFirst: function( polldata ){
return polldata.features[0];
},
getID: function( poll ){
return poll.attributes.Voting;
},
getName: function( poll ){
return poll.attributes.Building.toLowerCase();
},
getLatLng: function( poll ){
// [lat, lng]
return [ poll.geometry.y, poll.geometry.x ];
},
getDetails: function( poll ){
// optional String
if(typeof poll.attributes.HPEntranceOnly != "undefined" && poll.attributes.HPEntranceOnly){
return poll.attributes.HPEntranceOnly.toLowerCase();
}
}
};
// avoid console errors if missing
if(typeof console == "undefined" || typeof console.log == "undefined"){
console = { log: function(){ } };
}
// set up Google Maps
google.maps.visualRefresh=true;
var mapOptions = {
center: new google.maps.LatLng( 42.322953, -71.098622 ),
zoom: 12,
mapTypeId: google.maps.MapTypeId.ROADMAP,
streetViewControl: false,
mapTypeControl: false,
zoomControlOptions: {
style: google.maps.ZoomControlStyle.SMALL
}
};
var map = new google.maps.Map( $("#map")[0], mapOptions);
var infoWindow = new google.maps.InfoWindow();
// tap to close info window
google.maps.event.addListener(map, "click", function(e){
infoWindow.close();
});
// set up polling place info
var visiblePrecincts = [ ];
var selectMarker = null;
var pollMarkers = { };
var wardAndPrecinct = null;
// set up directions info
var directionsFrom = null;
var geocoder = new google.maps.Geocoder();
var directionsDisplay = new google.maps.DirectionsRenderer({ suppressMarkers: true });
directionsDisplay.setMap(map);
directionsDisplay.setPanel( $("#directions_readout")[0] );
var directionsService = new google.maps.DirectionsService();
var displayEntrance = null;
var mydestination = null;
var startmarker = null;
var myTravelMode = null;
var hasAsked = false;
var geolocationBlock = false;
// set up last-minute UI
$(document).ready(function(){
// line up bottom of the map with bottom of the window
//$("#map").height( screen.height - $("#map").offset().top );
// ensure clear button on search bar works
$("#topbar .ui-icon-delete").click(function(e){
$("#addsearch").val("");
});
// open splash screen
$('#splash_screen').css({ display: "block" });
// if this browser cannot geolocate, hide button
if(typeof navigator.geolocation == "undefined" || typeof navigator.geolocation.getCurrentPosition == "undefined"){
$("#fromhere").css({ display: "none" });
}
// hide search button on iOS
var userAgent = (navigator.userAgent + "").toLowerCase();
if(userAgent.indexOf("iphone") > -1 || userAgent.indexOf("ipad") > -1 || userAgent.indexOf("ios") > -1){
$(".ui-icon-searchfield").removeClass("ui-icon-searchfield");
$("#addsearch")[0].type = "search";
$("#addsearch").on('blur', searchAddress);
}
});
function attachMarker(poll, pollMarker){
google.maps.event.addListener(pollMarker, "click", function(e){
// write and open popup; include all voting precincts
var content = "<div class='nowrap'>" + pollingPlace.getName( poll ) + "</div>";
infoWindow.setContent( content );
infoWindow.open(map, pollMarker);
});
}
function mapPrecinctPolygons(precinctData){
// clear old precincts
if(visiblePrecincts.length){
for(var p=0;p<visiblePrecincts.length;p++){
visiblePrecincts[p].setMap(null);
}
visiblePrecincts = [ ];
}
// load new precincts, if they were found
var features = precinct.getList( precinctData );
if(features.length){
// update infowindow
var content = infoWindow.getContent();
for(var f=0;f<features.length;f++){
// add to info window
if(f){
content += ", ";
}
content += precinct.getName( features[f] );
var pathList = precinct.getPolygon( features[f] );
for(var r=0;r<pathList.length;r++){
for(var c=0;c<pathList[r].length;c++){
pathList[r][c] = new google.maps.LatLng( pathList[r][c][0] * 1.0, pathList[r][c][1] * 1.0 );
}
}
var precinctPoly = new google.maps.Polygon({
paths: pathList,
strokeWeight: 1,
strokeOpacity: 0.5,
strokeColor: "#00f",
geodesic: false,
clickable: false,
fillColor: "#3aaacf",
fillOpacity: 0.4,
map: map
});
visiblePrecincts.push( precinctPoly );
}
// update info window
infoWindow.setContent( content );
}
}
function findPrecinctAndPoll( latlng ){
// hide last search
if(selectMarker){
selectMarker.setMap(null);
displayEntrance = null;
}
// search for precinct matching this latlng
var s = document.createElement("script");
s.type = "text/javascript";
var precinctURL = replaceAll( precinct.serviceUrl, "{{LNG}}", latlng.lng() );
precinctURL = replaceAll( precinctURL, "{{LAT}}", latlng.lat() );
s.src = precinctURL;
$(document.body).append(s);
}
function showPrecinctAndPoll( precinctData ){
mapPrecinctPolygons( precinctData );
// retrieve precinct ward and precinct, coded WWPP
wardAndPrecinct = precinct.getName( precinct.getList( precinctData )[0] );
// look up polling place by precinct ID
// this lookup table step is needed to connect a polling place to its precinct
var precinctID = precinct.getID( precinct.getList( precinctData )[0] );
var wardID = precinct.getWardID( precinct.getList( precinctData )[0] );
// if possible, switch URL to this precinct
// this means back button will refresh page
if(typeof history != "undefined" && typeof history.pushState != "undefined" && $("#moreinfo").css("display") == "none"){
history.pushState(null, null, "?p=" + precinctID);
window.onpopstate = function(e) {
// hit back button -> go back to start
if(!geolocationBlock){
var t = new Date();
window.location = "index.html?start=" + Math.round(t * 0.001);
}
else{
geolocationBlock = false;
}
};
}
var s = document.createElement("script");
s.type = "text/javascript";
if(typeof lookupTable != "undefined" && lookupTable){
s.src = replaceAll( replaceAll( lookupTable.serviceUrl, "{{PRECINCTID}}", precinctID ), "{{WARDID}}", wardID );
}
else{
s.src = replaceAll( pollingPlace.serviceUrl, "{{POLLINGPLACEID}}", precinctID );
}
$(document.body).append(s);
}
function showPollMarker( lookupData ){
if(selectMarker){
selectMarker.setMap(null);
displayEntrance = null;
}
var pollingID = lookupTable.pollingPlaceId( lookupData );
if(typeof pollMarkers[ pollingID ] == "undefined"){
var s = document.createElement("script");
s.type = "text/javascript";
s.src = replaceAll( pollingPlace.serviceUrl, "{{POLLINGPLACEID}}", pollingID);
$(document.body).append(s);
}
else{
showPoll( { features: [ pollMarkers[ pollingID ].poll ] } );
}
}
function showPoll(polldata){
console.log( polldata );
var poll = pollingPlace.getFirst( polldata );
var pollingID = pollingPlace.getID( poll );
if(typeof pollMarkers[ pollingID ] == "undefined"){
// place a marker if previously unknown
var latlng = pollingPlace.getLatLng( poll );
var pollMarker = new google.maps.Marker({
position: new google.maps.LatLng( latlng[0] * 1.0, latlng[1] * 1.0 )
});
// display district and info when I click this polling place
attachMarker(poll, pollMarker);
// remember this marker
pollMarkers[ pollingID ] = {
marker: pollMarker,
poll: poll
};
}
var content = "<div class='nowrap'>" + pollingPlace.getName( poll ) + "</div>";
// include precinct ward and precinct, coded WWPP
content += "<div class='nowrap'>" + wardAndPrecinct + "</div>";
var details = pollingPlace.getDetails( poll );
if(details){
content += details;
$("#entrance").text( details ).css({
display: "block"
});
}
else{
$("#entrance").css({
display: "none"
});
}
//content += "<br/><img width='250' height='250' src='http://maps.googleapis.com/maps/api/streetview?size=250x250&location=" + poll.attributes.FULLADD + "," + poll.attributes.CITY + "," + poll.attributes.STATE + "&fov=90&pitch=10&sensor=false'/><br/>";
infoWindow.setContent( content );
infoWindow.open( map, pollMarkers[ pollingID ].marker );
selectMarker = pollMarkers[ pollingID ].marker;
selectMarker.setMap(map);
$("#moreinfo").css({ visibility: "visible" });
if($("#moreinfo").css("display") == "none"){
$("#moreinfo_screen").css({
"overflow-y": "scroll",
"max-height": $(document.body).height() - 10 + "px"
});
}
if(directionsFrom){
// show directions from stored point to the poll
showDirections(directionsFrom, pollMarkers[ pollingID ].marker.getPosition() );
}
}
function showDirections(startll, endll){
mydestination = endll;
if($("#moreinfo_screen").css("visibility") == "hidden"){
$("#moreinfo_screen").css({ visibility: "visible" });
}
$("#officials-btn").css({ display: "block" });
var travel = google.maps.DirectionsTravelMode.WALKING;
if(myTravelMode){
if(myTravelMode == "transit"){
travel = google.maps.DirectionsTravelMode.TRANSIT;
}
else if(myTravelMode == "drive"){
travel = google.maps.DirectionsTravelMode.DRIVING;
}
}
var request = {
origin: startll,
destination: endll,
travelMode: travel
};
if(startmarker){
startmarker.setMap(null);
}
directionsService.route(request, function(result, status){
if(status == google.maps.DirectionsStatus.OK){
hasAsked = false;
directionsDisplay.setDirections(result);
startmarker = new google.maps.Marker({
map: map,
clickable: false,
icon: 'http://mt.googleapis.com/vt/icon/name=icons/spotlight/spotlight-waypoint-a.png&text=%20&psize=16&font=fonts/Roboto-Regular.ttf&color=ff333333&ax=44&ay=48&scale=1',
position: result.routes[0].legs[0].start_location
});
// if you click the start directions box, offer to reload the page
// you can also refresh the page or press the back button
setTimeout(function(){
if(!hasAsked){
$("#adp-placemark").click(function(e){
var restart = confirm('Find polling place for another address?')
if(restart){
var d = new Date();
window.location = "index.html?t=" + Math.round( d * 0.001 );
}
});
hasAsked = true;
}
}, 500);
}
});
}
$("#restartsearch").click(function(e){
var restart = confirm('Find polling place for another address?')
if(restart){
var d = new Date();
window.location = "index.html?t=" + Math.round( d * 0.001 );
}
});
function searchAddress(){
// check that some text was submitted
var searched = $("#addsearch").val();
if(!searched.length){
return;
}
// hide splash screen
$('#splash_screen').css({ display: "none" });
// if not specified, tell Google that this address is inside the city
if(searched.toLowerCase().indexOf("boston") == -1){
searched += ", Boston, MA";
}
//console.log(searched);
// use Google geocoder
geocoder.geocode( { 'address': searched }, function(results, status){
if(status == google.maps.GeocoderStatus.OK && results.length){
directionsFrom = results[0].geometry.location;
findPrecinctAndPoll( results[0].geometry.location );
}
});
}
function directionsFromMe(){
// recalculate directions from current location
geolocationBlock = true;
navigator.geolocation.getCurrentPosition(function(position){
directionsFrom = new google.maps.LatLng( position.coords.latitude, position.coords.longitude );
showDirections(directionsFrom, mydestination);
});
}
function travelMode(){
// determine user's travel mode
var modes = $(".transitmode");
for(var m=0;m<modes.length;m++){
if(modes[m].checked && modes[m].value != myTravelMode){
myTravelMode = modes[m].value;
showDirections( directionsFrom, mydestination );
return;
}
}
}
function travelModeBtn(selectMode){
// IE backup
myTravelMode = selectMode;
showDirections( directionsFrom, mydestination );
}
function checkForEnter(e){
if(e.keyCode == 13){
// pressed enter
searchAddress();
}
}
if(myTravelMode){
var modes = $(".transitmode");
for(var m=0;m<modes.length;m++){
if(modes[m].value == myTravelMode){
modes[m].checked = true;
}
else{
modes[m].checked = false;
}
}
}
function directionsWindow(){
$("#moreinfo_screen").css({ display: "block" });
// make everything scrollable in a way that Android < 3 can handle
$("html, body, #map, .ui-body, .ui-page").css({
overflow: "visible"
});
}
function hideDirectionsWindow(){
$('#moreinfo_screen').css({ display: 'none' })
// make everything un-scrollable so Android < 3 can work
$("html, body, #map, .ui-body, .ui-page").css({
overflow: "hidden"
});
}
function showOfficialsWindow(){
$('#show_my_officials').css({
display: 'block',
position: 'absolute',
'background-color': '#fff',
color: '#000',
'z-index': 10,
'font-family': 'arial',
'text-shadow': 'none',
visibility: 'visible'
})
// make everything scrollable in a way that Android < 3 can handle
$("html, body, #map, .ui-body, .ui-page").css({
overflow: "visible"
});
// load all officials
var lng = mydestination.lng();
var lat = mydestination.lat();
var s = document.createElement('script');
s.type="text/javascript";
s.src = "http://maps.cityofboston.gov/ArcGIS/rest/services/PublicProperty/Precincts/MapServer/1/query?geometry=" + lng + "%2C" + lat + "&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelIntersects&returnCountOnly=false&returnIdsOnly=false&returnGeometry=false&outFields=*&f=pjson&callback=loadCityCouncil";
$(document.body).append(s);
var s = document.createElement('script');
s.type="text/javascript";
s.src = "http://maps.cityofboston.gov/ArcGIS/rest/services/PublicProperty/Precincts/MapServer/2/query?geometry=" + lng + "%2C" + lat + "&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelIntersects&returnCountOnly=false&returnIdsOnly=false&returnGeometry=false&outFields=*&f=pjson&callback=loadStateRepresentative";
$(document.body).append(s);
var s = document.createElement('script');
s.type="text/javascript";
s.src = "http://maps.cityofboston.gov/ArcGIS/rest/services/PublicProperty/Precincts/MapServer/3/query?geometry=" + lng + "%2C" + lat + "&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelIntersects&returnCountOnly=false&returnIdsOnly=false&returnGeometry=false&outFields=*&f=pjson&callback=loadStateSenate";
$(document.body).append(s);
var s = document.createElement('script');
s.type="text/javascript";
s.src = "http://maps.cityofboston.gov/ArcGIS/rest/services/PublicProperty/Precincts/MapServer/4/query?geometry=" + lng + "%2C" + lat + "&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelIntersects&returnCountOnly=false&returnIdsOnly=false&returnGeometry=false&outFields=*&f=pjson&callback=loadUSCongress";
$(document.body).append(s);
}
function loadCityCouncil(electdata){
$("#citycouncil").text( electdata.features[0].attributes.REPNAME + " -- District: " + electdata.features[0].attributes.NAME );
}
function loadStateRepresentative(electdata){
$("#staterepresentative").text( electdata.features[0].attributes.REPNAME + " -- District: " + electdata.features[0].attributes.NAME );
}
function loadStateSenate(electdata){
$("#statesenate").text( electdata.features[0].attributes.REPNAME + " -- District: " + electdata.features[0].attributes.NAME );
}
function loadUSCongress(electdata){
$("#uscongress").text( electdata.features[0].attributes.REPNAME + " -- District: " + electdata.features[0].attributes.NAME );
}
function hideOfficialsWindow(){
$('#show_my_officials').css({ display: 'none' })
// make everything un-scrollable so Android < 3 can work
$("html, body, #map, .ui-body, .ui-page").css({
overflow: "hidden"
});
}
function replaceAll(src, oldr, newr){
while(src.indexOf(oldr) > -1){
src = src.replace(oldr, newr);
}
return src;
}