Commit 044c2fcc67b88e2e59ea2720d1eb8ababb014660

Authored by Azusa Kawakami
1 parent 81dacdfbe2
Exists in master

911 minor change

Showing 1 changed file with 2 additions and 1 deletions Inline Diff

views/pages/landing.ejs View file @ 044c2fc
<!DOCTYPE html> 1 1 <!DOCTYPE html>
<html lang="en"> 2 2 <html lang="en">
<head> 3 3 <head>
<% include ../partials/header %> 4 4 <% include ../partials/header %>
<!-- <script type="text/javascript" 5 5 <!-- <script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDAXDHeZXEv4H4ZnThVDxpyAuxVpzOcj_U&libraries=visualization"> 6 6 src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDAXDHeZXEv4H4ZnThVDxpyAuxVpzOcj_U&libraries=visualization">
</script> --> 7 7 </script> -->
8 8
</head> 9 9 </head>
10 10
11 11
<body> 12 12 <body>
<div class="container"> 13 13 <div class="container">
14 14
<!-- My LOCATION --> 15 15 <!-- My LOCATION -->
<div> 16 16 <div>
<input type="text" class="form-control text-field" id="origin" name="fromText" placeholder="MY LOCATION" onclick="initFrom()"> 17 17 <input type="text" class="form-control text-field" id="origin" name="fromText" placeholder="MY LOCATION" onclick="initFrom()">
</div> 18 18 </div>
<!-- Destination --> 19 19 <!-- Destination -->
<div> 20 20 <div>
<input type="text" class="form-control text-field" id="dest" name="toText" placeholder="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna..." onclick="initTo()"> 21 21 <input type="text" class="form-control text-field" id="dest" name="toText" placeholder="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna..." onclick="initTo()">
</div> 22 22 </div>
23 23
<!-- Buttons and status information on top of the map. --> 24 24 <!-- Buttons and status information on top of the map. -->
<div class="container" id="map-top"> 25 25 <div class="container" id="map-top">
<div class="row"> 26 26 <div class="row">
<!-- Status --> 27 27 <!-- Status -->
<div class="col-xs-6"> 28 28 <div class="col-xs-6">
<!-- Title: Current Route --> 29 29 <!-- Title: Current Route -->
<div> 30 30 <div>
Current Route: 31 31 Current Route:
</div> 32 32 </div>
<!-- Icons + Status --> 33 33 <!-- Icons + Status -->
<div class="row status"> 34 34 <div class="row status">
<!-- Safety Rating --> 35 35 <!-- Safety Rating -->
<div class="col-xs-6"> 36 36 <div class="col-xs-6">
80% Safe 37 37 80% Safe
</div> 38 38 </div>
<!-- Travel Duration --> 39 39 <!-- Travel Duration -->
<div class="col-xs-6"> 40 40 <div class="col-xs-6">
10 Mins 41 41 10 Mins
</div> 42 42 </div>
</div> 43 43 </div>
</div> 44 44 </div>
<!-- Alt Routes --> 45 45 <!-- Alt Routes -->
<div class="col-xs-6"> 46 46 <div class="col-xs-6">
<button type="button" class="btn btn-default btn-block" id="alt-routes" onclick="todo()">Alternate Routes</button> 47 47 <button type="button" class="btn btn-default btn-block" id="alt-routes" onclick="todo()">Alternate Routes</button>
</div> 48 48 </div>
</div> 49 49 </div>
</div> 50 50 </div>
51 51
<!-- Div container for map. --> 52 52 <!-- Div container for map. -->
<div id="map"></div> 53 53 <div id="map"></div>
54 54
<!-- Javascript for the map. --> 55 55 <!-- Javascript for the map. -->
<script> 56 56 <script>
var map, heatmap; 57 57 var map, heatmap;
// Used by the Google Maps Direction API. 58 58 // Used by the Google Maps Direction API.
var directionsService; 59 59 var directionsService;
var directionsDisplay; 60 60 var directionsDisplay;
61 61
function initMap() { 62 62 function initMap() {
directionsService = new google.maps.DirectionsService; 63 63 directionsService = new google.maps.DirectionsService;
directionsDisplay = new google.maps.DirectionsRenderer; 64 64 directionsDisplay = new google.maps.DirectionsRenderer;
// Setting default map location i.e. Geisel Library. 65 65 // Setting default map location i.e. Geisel Library.
map = new google.maps.Map(document.getElementById('map'), { 66 66 map = new google.maps.Map(document.getElementById('map'), {
zoom: 13, 67 67 zoom: 13,
center: {lat: 37.775, lng: -122.434} 68 68 center: {lat: 37.775, lng: -122.434}
}); 69 69 });
70 70
heatmap = new google.maps.visualization.HeatmapLayer({ 71 71 heatmap = new google.maps.visualization.HeatmapLayer({
data: getPoints(), 72 72 data: getPoints(),
map: map 73 73 map: map
}); 74 74 });
directionsDisplay.setMap(map); 75 75 directionsDisplay.setMap(map);
76 76
// Keeping the map center when the browser is resized. 77 77 // Keeping the map center when the browser is resized.
function resizing() { 78 78 function resizing() {
var center = map.getCenter(); 79 79 var center = map.getCenter();
google.maps.event.trigger(map, "resize"); 80 80 google.maps.event.trigger(map, "resize");
map.setCenter(center); 81 81 map.setCenter(center);
} 82 82 }
83 83
google.maps.event.addDomListener(window, "resize", resizing); 84 84 google.maps.event.addDomListener(window, "resize", resizing);
85 85
// // Showing route. 86 86 // // Showing route.
displayRoute(directionsService, directionsDisplay); 87 87 displayRoute(directionsService, directionsDisplay);
} 88 88 }
89 89
function displayRoute(directionsService, directionsDisplay) { 90 90 function displayRoute(directionsService, directionsDisplay) {
// Textfields that show from and to. 91 91 // Textfields that show from and to.
document.getElementsByName("fromText")[0].placeholder=localStorage.getItem("from"); 92 92 document.getElementsByName("fromText")[0].placeholder=localStorage.getItem("from");
document.getElementsByName("toText")[0].placeholder=localStorage.getItem("to"); 93 93 document.getElementsByName("toText")[0].placeholder=localStorage.getItem("to");
94 94
// Default mode to driving if none was chosen. 95 95 // Default mode to driving if none was chosen.
var mode = localStorage.getItem("mode"); 96 96 var mode = localStorage.getItem("mode");
97 97
if (mode != "WALKING" && mode != "DRIVING" && mode != "TRANSIT") { 98 98 if (mode != "WALKING" && mode != "DRIVING" && mode != "TRANSIT") {
mode = "DRIVING"; 99 99 mode = "DRIVING";
} 100 100 }
101 101
var request = { 102 102 var request = {
origin: localStorage.getItem("from"), 103 103 origin: localStorage.getItem("from"),
destination: localStorage.getItem("to"), 104 104 destination: localStorage.getItem("to"),
travelMode: mode 105 105 travelMode: mode
}; 106 106 };
107 107
directionsService.route(request, function(response, status) { 108 108 directionsService.route(request, function(response, status) {
if (status === "OK") { 109 109 if (status === "OK") {
directionsDisplay.setDirections(response); 110 110 directionsDisplay.setDirections(response);
} 111 111 }
else { 112 112 else {
window.alert("Directions request failed due to " + status); 113 113 window.alert("Directions request failed due to " + status);
} 114 114 }
}); 115 115 });
} 116 116 }
117 117
function initFrom() { 118 118 function initFrom() {
var temp = document.getElementById("origin"); 119 119 var temp = document.getElementById("origin");
120 120
var autoOrigin = new google.maps.places.Autocomplete(temp); 121 121 var autoOrigin = new google.maps.places.Autocomplete(temp);
122 122
google.maps.event.addListener(autoOrigin, 'place_changed', function () { 123 123 google.maps.event.addListener(autoOrigin, 'place_changed', function () {
var place = autoOrigin.getPlace(); 124 124 var place = autoOrigin.getPlace();
// Testing. 125 125 // Testing.
console.log(place); 126 126 console.log(place);
localStorage.setItem("from", place.formatted_address); 127 127 localStorage.setItem("from", place.formatted_address);
displayRoute(directionsService, directionsDisplay); 128 128 displayRoute(directionsService, directionsDisplay);
}); 129 129 });
} 130 130 }
131 131
function initTo() { 132 132 function initTo() {
var temp = document.getElementById("dest"); 133 133 var temp = document.getElementById("dest");
134 134
var autoDest = new google.maps.places.Autocomplete(temp); 135 135 var autoDest = new google.maps.places.Autocomplete(temp);
136 136
google.maps.event.addListener(autoDest, 'place_changed', function () { 137 137 google.maps.event.addListener(autoDest, 'place_changed', function () {
var place = autoDest.getPlace(); 138 138 var place = autoDest.getPlace();
// Testing. 139 139 // Testing.
console.log(place); 140 140 console.log(place);
localStorage.setItem("to", place.formatted_address); 141 141 localStorage.setItem("to", place.formatted_address);
displayRoute(directionsService, directionsDisplay); 142 142 displayRoute(directionsService, directionsDisplay);
}); 143 143 });
} 144 144 }
145 145
function getPoints() { 146 146 function getPoints() {
//read json here from passed in parameters 147 147 //read json here from passed in parameters
//loop here that loops through the passed in json values for points along the route 148 148 //loop here that loops through the passed in json values for points along the route
//return the list of objects created from those longitudes and latitudes 149 149 //return the list of objects created from those longitudes and latitudes
150 150
//THIS IS THE CODE TO READ JSON BUT IT'S NOT VIABLE TO CREATE ALL THESE POINTS MANUALLY IN A JSON FILE. 151 151 //THIS IS THE CODE TO READ JSON BUT IT'S NOT VIABLE TO CREATE ALL THESE POINTS MANUALLY IN A JSON FILE.
//So instead we copy pasted a sample set of points to demonstrate the functionality 152 152 //So instead we copy pasted a sample set of points to demonstrate the functionality
153 153
/*var toReturn = []; 154 154 /*var toReturn = [];
for (i = 0; i < [insert ejs symbols here]spots.length[insert ejs symbols here]; i++) { 155 155 for (i = 0; i < [insert ejs symbols here]spots.length[insert ejs symbols here]; i++) {
toReturn.push(new google.maps.LatLng(insert ejs symbols here spots[i].latutudeinsert ejs symbols here, insert ejs symbols here spots[i].longitudeinsert ejs symbols here)); 156 156 toReturn.push(new google.maps.LatLng(insert ejs symbols here spots[i].latutudeinsert ejs symbols here, insert ejs symbols here spots[i].longitudeinsert ejs symbols here));
} 157 157 }
158 158
return toReturn;*/ 159 159 return toReturn;*/
160 160
161 161
return [ 162 162 return [
new google.maps.LatLng(37.782551, -122.445368), 163 163 new google.maps.LatLng(37.782551, -122.445368),
new google.maps.LatLng(37.782745, -122.444586), 164 164 new google.maps.LatLng(37.782745, -122.444586),
new google.maps.LatLng(37.782842, -122.443688), 165 165 new google.maps.LatLng(37.782842, -122.443688),
new google.maps.LatLng(37.782919, -122.442815), 166 166 new google.maps.LatLng(37.782919, -122.442815),
new google.maps.LatLng(37.782992, -122.442112), 167 167 new google.maps.LatLng(37.782992, -122.442112),
new google.maps.LatLng(37.783100, -122.441461), 168 168 new google.maps.LatLng(37.783100, -122.441461),
new google.maps.LatLng(37.783206, -122.440829), 169 169 new google.maps.LatLng(37.783206, -122.440829),
new google.maps.LatLng(37.783273, -122.440324), 170 170 new google.maps.LatLng(37.783273, -122.440324),
new google.maps.LatLng(37.783316, -122.440023), 171 171 new google.maps.LatLng(37.783316, -122.440023),
new google.maps.LatLng(37.783357, -122.439794), 172 172 new google.maps.LatLng(37.783357, -122.439794),
new google.maps.LatLng(37.783371, -122.439687), 173 173 new google.maps.LatLng(37.783371, -122.439687),
new google.maps.LatLng(37.783368, -122.439666), 174 174 new google.maps.LatLng(37.783368, -122.439666),
new google.maps.LatLng(37.783383, -122.439594), 175 175 new google.maps.LatLng(37.783383, -122.439594),
new google.maps.LatLng(37.783508, -122.439525), 176 176 new google.maps.LatLng(37.783508, -122.439525),
new google.maps.LatLng(37.783842, -122.439591), 177 177 new google.maps.LatLng(37.783842, -122.439591),
new google.maps.LatLng(37.784147, -122.439668), 178 178 new google.maps.LatLng(37.784147, -122.439668),
new google.maps.LatLng(37.784206, -122.439686), 179 179 new google.maps.LatLng(37.784206, -122.439686),
new google.maps.LatLng(37.784386, -122.439790), 180 180 new google.maps.LatLng(37.784386, -122.439790),
new google.maps.LatLng(37.784701, -122.439902), 181 181 new google.maps.LatLng(37.784701, -122.439902),
new google.maps.LatLng(37.784965, -122.439938), 182 182 new google.maps.LatLng(37.784965, -122.439938),
new google.maps.LatLng(37.785010, -122.439947), 183 183 new google.maps.LatLng(37.785010, -122.439947),
new google.maps.LatLng(37.785360, -122.439952), 184 184 new google.maps.LatLng(37.785360, -122.439952),
new google.maps.LatLng(37.785715, -122.440030), 185 185 new google.maps.LatLng(37.785715, -122.440030),
new google.maps.LatLng(37.786117, -122.440119), 186 186 new google.maps.LatLng(37.786117, -122.440119),
new google.maps.LatLng(37.786564, -122.440209), 187 187 new google.maps.LatLng(37.786564, -122.440209),
new google.maps.LatLng(37.786905, -122.440270), 188 188 new google.maps.LatLng(37.786905, -122.440270),
new google.maps.LatLng(37.786956, -122.440279), 189 189 new google.maps.LatLng(37.786956, -122.440279),
new google.maps.LatLng(37.800224, -122.433520), 190 190 new google.maps.LatLng(37.800224, -122.433520),
new google.maps.LatLng(37.800155, -122.434101), 191 191 new google.maps.LatLng(37.800155, -122.434101),
new google.maps.LatLng(37.800160, -122.434430), 192 192 new google.maps.LatLng(37.800160, -122.434430),
new google.maps.LatLng(37.800378, -122.434527), 193 193 new google.maps.LatLng(37.800378, -122.434527),
new google.maps.LatLng(37.800738, -122.434598), 194 194 new google.maps.LatLng(37.800738, -122.434598),
new google.maps.LatLng(37.800938, -122.434650), 195 195 new google.maps.LatLng(37.800938, -122.434650),
new google.maps.LatLng(37.801024, -122.434889), 196 196 new google.maps.LatLng(37.801024, -122.434889),
new google.maps.LatLng(37.800955, -122.435392), 197 197 new google.maps.LatLng(37.800955, -122.435392),
new google.maps.LatLng(37.800886, -122.435959), 198 198 new google.maps.LatLng(37.800886, -122.435959),
new google.maps.LatLng(37.800811, -122.436275), 199 199 new google.maps.LatLng(37.800811, -122.436275),
new google.maps.LatLng(37.800788, -122.436299), 200 200 new google.maps.LatLng(37.800788, -122.436299),
new google.maps.LatLng(37.800719, -122.436302), 201 201 new google.maps.LatLng(37.800719, -122.436302),
new google.maps.LatLng(37.800702, -122.436298), 202 202 new google.maps.LatLng(37.800702, -122.436298),
new google.maps.LatLng(37.800661, -122.436273), 203 203 new google.maps.LatLng(37.800661, -122.436273),
new google.maps.LatLng(37.800395, -122.436172), 204 204 new google.maps.LatLng(37.800395, -122.436172),
new google.maps.LatLng(37.800228, -122.436116), 205 205 new google.maps.LatLng(37.800228, -122.436116),
new google.maps.LatLng(37.800169, -122.436130), 206 206 new google.maps.LatLng(37.800169, -122.436130),
new google.maps.LatLng(37.800066, -122.436167), 207 207 new google.maps.LatLng(37.800066, -122.436167),
new google.maps.LatLng(37.784345, -122.422922), 208 208 new google.maps.LatLng(37.784345, -122.422922),
new google.maps.LatLng(37.784389, -122.422926), 209 209 new google.maps.LatLng(37.784389, -122.422926),
new google.maps.LatLng(37.784437, -122.422924), 210 210 new google.maps.LatLng(37.784437, -122.422924),
new google.maps.LatLng(37.784746, -122.422818), 211 211 new google.maps.LatLng(37.784746, -122.422818),
new google.maps.LatLng(37.785436, -122.422959), 212 212 new google.maps.LatLng(37.785436, -122.422959),
new google.maps.LatLng(37.786120, -122.423112), 213 213 new google.maps.LatLng(37.786120, -122.423112),
new google.maps.LatLng(37.786433, -122.423029), 214 214 new google.maps.LatLng(37.786433, -122.423029),
new google.maps.LatLng(37.786631, -122.421213), 215 215 new google.maps.LatLng(37.786631, -122.421213),
new google.maps.LatLng(37.786660, -122.421033), 216 216 new google.maps.LatLng(37.786660, -122.421033),
new google.maps.LatLng(37.786801, -122.420141), 217 217 new google.maps.LatLng(37.786801, -122.420141),
new google.maps.LatLng(37.786823, -122.420034), 218 218 new google.maps.LatLng(37.786823, -122.420034),
new google.maps.LatLng(37.786831, -122.419916), 219 219 new google.maps.LatLng(37.786831, -122.419916),
new google.maps.LatLng(37.787034, -122.418208), 220 220 new google.maps.LatLng(37.787034, -122.418208),
new google.maps.LatLng(37.787056, -122.418034), 221 221 new google.maps.LatLng(37.787056, -122.418034),
new google.maps.LatLng(37.787169, -122.417145), 222 222 new google.maps.LatLng(37.787169, -122.417145),
new google.maps.LatLng(37.787217, -122.416715), 223 223 new google.maps.LatLng(37.787217, -122.416715),
new google.maps.LatLng(37.786144, -122.416403), 224 224 new google.maps.LatLng(37.786144, -122.416403),
new google.maps.LatLng(37.785292, -122.416257), 225 225 new google.maps.LatLng(37.785292, -122.416257),
new google.maps.LatLng(37.780666, -122.390374), 226 226 new google.maps.LatLng(37.780666, -122.390374),
new google.maps.LatLng(37.780501, -122.391281), 227 227 new google.maps.LatLng(37.780501, -122.391281),
new google.maps.LatLng(37.780148, -122.392052), 228 228 new google.maps.LatLng(37.780148, -122.392052),
new google.maps.LatLng(37.780173, -122.391148), 229 229 new google.maps.LatLng(37.780173, -122.391148),
new google.maps.LatLng(37.780693, -122.390592), 230 230 new google.maps.LatLng(37.780693, -122.390592),
new google.maps.LatLng(37.781261, -122.391142), 231 231 new google.maps.LatLng(37.781261, -122.391142),
new google.maps.LatLng(37.781808, -122.391730), 232 232 new google.maps.LatLng(37.781808, -122.391730),
new google.maps.LatLng(37.782340, -122.392341), 233 233 new google.maps.LatLng(37.782340, -122.392341),
new google.maps.LatLng(37.782812, -122.393022), 234 234 new google.maps.LatLng(37.782812, -122.393022),
new google.maps.LatLng(37.783300, -122.393672), 235 235 new google.maps.LatLng(37.783300, -122.393672),
new google.maps.LatLng(37.783809, -122.394275), 236 236 new google.maps.LatLng(37.783809, -122.394275),
new google.maps.LatLng(37.784246, -122.394979), 237 237 new google.maps.LatLng(37.784246, -122.394979),
new google.maps.LatLng(37.784791, -122.395958), 238 238 new google.maps.LatLng(37.784791, -122.395958),
new google.maps.LatLng(37.785675, -122.396746), 239 239 new google.maps.LatLng(37.785675, -122.396746),
new google.maps.LatLng(37.786262, -122.395780), 240 240 new google.maps.LatLng(37.786262, -122.395780),
new google.maps.LatLng(37.786776, -122.395093), 241 241 new google.maps.LatLng(37.786776, -122.395093),
new google.maps.LatLng(37.787282, -122.394426), 242 242 new google.maps.LatLng(37.787282, -122.394426),
new google.maps.LatLng(37.787783, -122.393767), 243 243 new google.maps.LatLng(37.787783, -122.393767),
new google.maps.LatLng(37.788343, -122.393184), 244 244 new google.maps.LatLng(37.788343, -122.393184),
new google.maps.LatLng(37.788895, -122.392506), 245 245 new google.maps.LatLng(37.788895, -122.392506),
new google.maps.LatLng(37.789371, -122.391701), 246 246 new google.maps.LatLng(37.789371, -122.391701),
new google.maps.LatLng(37.789722, -122.390952), 247 247 new google.maps.LatLng(37.789722, -122.390952),
new google.maps.LatLng(37.790315, -122.390305), 248 248 new google.maps.LatLng(37.790315, -122.390305),
new google.maps.LatLng(37.790738, -122.389616), 249 249 new google.maps.LatLng(37.790738, -122.389616),
new google.maps.LatLng(37.779448, -122.438702), 250 250 new google.maps.LatLng(37.779448, -122.438702),
new google.maps.LatLng(37.779023, -122.438585), 251 251 new google.maps.LatLng(37.779023, -122.438585),
new google.maps.LatLng(37.778542, -122.438492), 252 252 new google.maps.LatLng(37.778542, -122.438492),
new google.maps.LatLng(37.778100, -122.438411), 253 253 new google.maps.LatLng(37.778100, -122.438411),
new google.maps.LatLng(37.777986, -122.438376), 254 254 new google.maps.LatLng(37.777986, -122.438376),
new google.maps.LatLng(37.777680, -122.438313), 255 255 new google.maps.LatLng(37.777680, -122.438313),
new google.maps.LatLng(37.777316, -122.438273), 256 256 new google.maps.LatLng(37.777316, -122.438273),
new google.maps.LatLng(37.777135, -122.438254), 257 257 new google.maps.LatLng(37.777135, -122.438254),
new google.maps.LatLng(37.776987, -122.438303), 258 258 new google.maps.LatLng(37.776987, -122.438303),
new google.maps.LatLng(37.776946, -122.438404), 259 259 new google.maps.LatLng(37.776946, -122.438404),
new google.maps.LatLng(37.776944, -122.438467), 260 260 new google.maps.LatLng(37.776944, -122.438467),
new google.maps.LatLng(37.776892, -122.438459), 261 261 new google.maps.LatLng(37.776892, -122.438459),
new google.maps.LatLng(37.776842, -122.438442), 262 262 new google.maps.LatLng(37.776842, -122.438442),
new google.maps.LatLng(37.776822, -122.438391), 263 263 new google.maps.LatLng(37.776822, -122.438391),
new google.maps.LatLng(37.776814, -122.438412), 264 264 new google.maps.LatLng(37.776814, -122.438412),
new google.maps.LatLng(37.776787, -122.438628), 265 265 new google.maps.LatLng(37.776787, -122.438628),
new google.maps.LatLng(37.776729, -122.438650), 266 266 new google.maps.LatLng(37.776729, -122.438650),
new google.maps.LatLng(37.776759, -122.438677), 267 267 new google.maps.LatLng(37.776759, -122.438677),
new google.maps.LatLng(37.776772, -122.438498), 268 268 new google.maps.LatLng(37.776772, -122.438498),
new google.maps.LatLng(37.776787, -122.438389), 269 269 new google.maps.LatLng(37.776787, -122.438389),
new google.maps.LatLng(37.776848, -122.438283), 270 270 new google.maps.LatLng(37.776848, -122.438283),
new google.maps.LatLng(37.776870, -122.438239), 271 271 new google.maps.LatLng(37.776870, -122.438239),
new google.maps.LatLng(37.777015, -122.438198), 272 272 new google.maps.LatLng(37.777015, -122.438198),
new google.maps.LatLng(37.777333, -122.438256), 273 273 new google.maps.LatLng(37.777333, -122.438256),
new google.maps.LatLng(37.777595, -122.438308), 274 274 new google.maps.LatLng(37.777595, -122.438308),
new google.maps.LatLng(37.777797, -122.438344), 275 275 new google.maps.LatLng(37.777797, -122.438344),
new google.maps.LatLng(37.778160, -122.438442), 276 276 new google.maps.LatLng(37.778160, -122.438442),
new google.maps.LatLng(37.778414, -122.438508), 277 277 new google.maps.LatLng(37.778414, -122.438508),
new google.maps.LatLng(37.778445, -122.438516), 278 278 new google.maps.LatLng(37.778445, -122.438516),
new google.maps.LatLng(37.778503, -122.438529), 279 279 new google.maps.LatLng(37.778503, -122.438529),
new google.maps.LatLng(37.778607, -122.438549), 280 280 new google.maps.LatLng(37.778607, -122.438549),
new google.maps.LatLng(37.778670, -122.438644), 281 281 new google.maps.LatLng(37.778670, -122.438644),
new google.maps.LatLng(37.778847, -122.438706), 282 282 new google.maps.LatLng(37.778847, -122.438706),
new google.maps.LatLng(37.779240, -122.438744), 283 283 new google.maps.LatLng(37.779240, -122.438744),
new google.maps.LatLng(37.779738, -122.438822), 284 284 new google.maps.LatLng(37.779738, -122.438822),
new google.maps.LatLng(37.780201, -122.438882), 285 285 new google.maps.LatLng(37.780201, -122.438882),
new google.maps.LatLng(37.780400, -122.438905), 286 286 new google.maps.LatLng(37.780400, -122.438905),
new google.maps.LatLng(37.780501, -122.438921), 287 287 new google.maps.LatLng(37.780501, -122.438921),
new google.maps.LatLng(37.780892, -122.438986), 288 288 new google.maps.LatLng(37.780892, -122.438986),
new google.maps.LatLng(37.781446, -122.439087), 289 289 new google.maps.LatLng(37.781446, -122.439087),
new google.maps.LatLng(37.781985, -122.439199), 290 290 new google.maps.LatLng(37.781985, -122.439199),
new google.maps.LatLng(37.782239, -122.439249), 291 291 new google.maps.LatLng(37.782239, -122.439249),
new google.maps.LatLng(37.782286, -122.439266), 292 292 new google.maps.LatLng(37.782286, -122.439266),
new google.maps.LatLng(37.797847, -122.429388), 293 293 new google.maps.LatLng(37.797847, -122.429388),
new google.maps.LatLng(37.797874, -122.429180), 294 294 new google.maps.LatLng(37.797874, -122.429180),
new google.maps.LatLng(37.797885, -122.429069), 295 295 new google.maps.LatLng(37.797885, -122.429069),
new google.maps.LatLng(37.797887, -122.429050), 296 296 new google.maps.LatLng(37.797887, -122.429050),
new google.maps.LatLng(37.797933, -122.428954), 297 297 new google.maps.LatLng(37.797933, -122.428954),
new google.maps.LatLng(37.798242, -122.428990), 298 298 new google.maps.LatLng(37.798242, -122.428990),
new google.maps.LatLng(37.798617, -122.429075), 299 299 new google.maps.LatLng(37.798617, -122.429075),
new google.maps.LatLng(37.798719, -122.429092), 300 300 new google.maps.LatLng(37.798719, -122.429092),
new google.maps.LatLng(37.798944, -122.429145), 301 301 new google.maps.LatLng(37.798944, -122.429145),
new google.maps.LatLng(37.799320, -122.429251), 302 302 new google.maps.LatLng(37.799320, -122.429251),
new google.maps.LatLng(37.799590, -122.429309), 303 303 new google.maps.LatLng(37.799590, -122.429309),
new google.maps.LatLng(37.799677, -122.429324), 304 304 new google.maps.LatLng(37.799677, -122.429324),
new google.maps.LatLng(37.799966, -122.429360), 305 305 new google.maps.LatLng(37.799966, -122.429360),
new google.maps.LatLng(37.800288, -122.429430), 306 306 new google.maps.LatLng(37.800288, -122.429430),
new google.maps.LatLng(37.800443, -122.429461), 307 307 new google.maps.LatLng(37.800443, -122.429461),
new google.maps.LatLng(37.800465, -122.429474), 308 308 new google.maps.LatLng(37.800465, -122.429474),
new google.maps.LatLng(37.800644, -122.429540), 309 309 new google.maps.LatLng(37.800644, -122.429540),
new google.maps.LatLng(37.800948, -122.429620), 310 310 new google.maps.LatLng(37.800948, -122.429620),
new google.maps.LatLng(37.801242, -122.429685), 311 311 new google.maps.LatLng(37.801242, -122.429685),
new google.maps.LatLng(37.801375, -122.429702), 312 312 new google.maps.LatLng(37.801375, -122.429702),
new google.maps.LatLng(37.801400, -122.429703), 313 313 new google.maps.LatLng(37.801400, -122.429703),
new google.maps.LatLng(37.801453, -122.429707), 314 314 new google.maps.LatLng(37.801453, -122.429707),
new google.maps.LatLng(37.801473, -122.429709), 315 315 new google.maps.LatLng(37.801473, -122.429709),
new google.maps.LatLng(37.801532, -122.429707), 316 316 new google.maps.LatLng(37.801532, -122.429707),
new google.maps.LatLng(37.801852, -122.429729), 317 317 new google.maps.LatLng(37.801852, -122.429729),
new google.maps.LatLng(37.802173, -122.429789), 318 318 new google.maps.LatLng(37.802173, -122.429789),
new google.maps.LatLng(37.802459, -122.429847), 319 319 new google.maps.LatLng(37.802459, -122.429847),
new google.maps.LatLng(37.802554, -122.429825), 320 320 new google.maps.LatLng(37.802554, -122.429825),
new google.maps.LatLng(37.802647, -122.429549), 321 321 new google.maps.LatLng(37.802647, -122.429549),
new google.maps.LatLng(37.802693, -122.429179), 322 322 new google.maps.LatLng(37.802693, -122.429179),
new google.maps.LatLng(37.802729, -122.428751), 323 323 new google.maps.LatLng(37.802729, -122.428751),
new google.maps.LatLng(37.766104, -122.409291), 324 324 new google.maps.LatLng(37.766104, -122.409291),
new google.maps.LatLng(37.766103, -122.409268), 325 325 new google.maps.LatLng(37.766103, -122.409268),
new google.maps.LatLng(37.766138, -122.409229), 326 326 new google.maps.LatLng(37.766138, -122.409229),
new google.maps.LatLng(37.766183, -122.409231), 327 327 new google.maps.LatLng(37.766183, -122.409231),
new google.maps.LatLng(37.766153, -122.409276), 328 328 new google.maps.LatLng(37.766153, -122.409276),
new google.maps.LatLng(37.766005, -122.409365), 329 329 new google.maps.LatLng(37.766005, -122.409365),
new google.maps.LatLng(37.765897, -122.409570), 330 330 new google.maps.LatLng(37.765897, -122.409570),
new google.maps.LatLng(37.765767, -122.409739), 331 331 new google.maps.LatLng(37.765767, -122.409739),
new google.maps.LatLng(37.765693, -122.410389), 332 332 new google.maps.LatLng(37.765693, -122.410389),
new google.maps.LatLng(37.765615, -122.411201), 333 333 new google.maps.LatLng(37.765615, -122.411201),
new google.maps.LatLng(37.765533, -122.412121), 334 334 new google.maps.LatLng(37.765533, -122.412121),
new google.maps.LatLng(37.765467, -122.412939), 335 335 new google.maps.LatLng(37.765467, -122.412939),
new google.maps.LatLng(37.765444, -122.414821), 336 336 new google.maps.LatLng(37.765444, -122.414821),
new google.maps.LatLng(37.765444, -122.414964), 337 337 new google.maps.LatLng(37.765444, -122.414964),
new google.maps.LatLng(37.765318, -122.415424), 338 338 new google.maps.LatLng(37.765318, -122.415424),
new google.maps.LatLng(37.763961, -122.415296), 339 339 new google.maps.LatLng(37.763961, -122.415296),
new google.maps.LatLng(37.763115, -122.415196), 340 340 new google.maps.LatLng(37.763115, -122.415196),
new google.maps.LatLng(37.762967, -122.415183), 341 341 new google.maps.LatLng(37.762967, -122.415183),
new google.maps.LatLng(37.762278, -122.415127), 342 342 new google.maps.LatLng(37.762278, -122.415127),
new google.maps.LatLng(37.761675, -122.415055), 343 343 new google.maps.LatLng(37.761675, -122.415055),
new google.maps.LatLng(37.760932, -122.414988), 344 344 new google.maps.LatLng(37.760932, -122.414988),
new google.maps.LatLng(37.759337, -122.414862), 345 345 new google.maps.LatLng(37.759337, -122.414862),
new google.maps.LatLng(37.773187, -122.421922), 346 346 new google.maps.LatLng(37.773187, -122.421922),
new google.maps.LatLng(37.773043, -122.422118), 347 347 new google.maps.LatLng(37.773043, -122.422118),
new google.maps.LatLng(37.773007, -122.422165), 348 348 new google.maps.LatLng(37.773007, -122.422165),
new google.maps.LatLng(37.772979, -122.422219), 349 349 new google.maps.LatLng(37.772979, -122.422219),
new google.maps.LatLng(37.772865, -122.422394), 350 350 new google.maps.LatLng(37.772865, -122.422394),
new google.maps.LatLng(37.772779, -122.422503), 351 351 new google.maps.LatLng(37.772779, -122.422503),
new google.maps.LatLng(37.772676, -122.422701), 352 352 new google.maps.LatLng(37.772676, -122.422701),
new google.maps.LatLng(37.772606, -122.422806), 353 353 new google.maps.LatLng(37.772606, -122.422806),
new google.maps.LatLng(37.772566, -122.422840), 354 354 new google.maps.LatLng(37.772566, -122.422840),
new google.maps.LatLng(37.772508, -122.422852), 355 355 new google.maps.LatLng(37.772508, -122.422852),
new google.maps.LatLng(37.772387, -122.423011), 356 356 new google.maps.LatLng(37.772387, -122.423011),
new google.maps.LatLng(37.772099, -122.423328), 357 357 new google.maps.LatLng(37.772099, -122.423328),
new google.maps.LatLng(37.771704, -122.423783), 358 358 new google.maps.LatLng(37.771704, -122.423783),
new google.maps.LatLng(37.771481, -122.424081), 359 359 new google.maps.LatLng(37.771481, -122.424081),
new google.maps.LatLng(37.771400, -122.424179), 360 360 new google.maps.LatLng(37.771400, -122.424179),
new google.maps.LatLng(37.771352, -122.424220), 361 361 new google.maps.LatLng(37.771352, -122.424220),
new google.maps.LatLng(37.771248, -122.424327), 362 362 new google.maps.LatLng(37.771248, -122.424327),
new google.maps.LatLng(37.770904, -122.424781), 363 363 new google.maps.LatLng(37.770904, -122.424781),
new google.maps.LatLng(37.770520, -122.425283), 364 364 new google.maps.LatLng(37.770520, -122.425283),
new google.maps.LatLng(37.770337, -122.425553), 365 365 new google.maps.LatLng(37.770337, -122.425553),
new google.maps.LatLng(37.770128, -122.425832), 366 366 new google.maps.LatLng(37.770128, -122.425832),
new google.maps.LatLng(37.769756, -122.426331), 367 367 new google.maps.LatLng(37.769756, -122.426331),
new google.maps.LatLng(37.769300, -122.426902), 368 368 new google.maps.LatLng(37.769300, -122.426902),
new google.maps.LatLng(37.769132, -122.427065), 369 369 new google.maps.LatLng(37.769132, -122.427065),
new google.maps.LatLng(37.769092, -122.427103), 370 370 new google.maps.LatLng(37.769092, -122.427103),
new google.maps.LatLng(37.768979, -122.427172), 371 371 new google.maps.LatLng(37.768979, -122.427172),
new google.maps.LatLng(37.768595, -122.427634), 372 372 new google.maps.LatLng(37.768595, -122.427634),
new google.maps.LatLng(37.768372, -122.427913), 373 373 new google.maps.LatLng(37.768372, -122.427913),
new google.maps.LatLng(37.768337, -122.427961), 374 374 new google.maps.LatLng(37.768337, -122.427961),
new google.maps.LatLng(37.768244, -122.428138), 375 375 new google.maps.LatLng(37.768244, -122.428138),
new google.maps.LatLng(37.767942, -122.428581), 376 376 new google.maps.LatLng(37.767942, -122.428581),
new google.maps.LatLng(37.767482, -122.429094), 377 377 new google.maps.LatLng(37.767482, -122.429094),
new google.maps.LatLng(37.767031, -122.429606), 378 378 new google.maps.LatLng(37.767031, -122.429606),
new google.maps.LatLng(37.766732, -122.429986), 379 379 new google.maps.LatLng(37.766732, -122.429986),
new google.maps.LatLng(37.766680, -122.430058), 380 380 new google.maps.LatLng(37.766680, -122.430058),
new google.maps.LatLng(37.766633, -122.430109), 381 381 new google.maps.LatLng(37.766633, -122.430109),
new google.maps.LatLng(37.766580, -122.430211), 382 382 new google.maps.LatLng(37.766580, -122.430211),
new google.maps.LatLng(37.766367, -122.430594), 383 383 new google.maps.LatLng(37.766367, -122.430594),
new google.maps.LatLng(37.765910, -122.431137), 384 384 new google.maps.LatLng(37.765910, -122.431137),
new google.maps.LatLng(37.765353, -122.431806), 385 385 new google.maps.LatLng(37.765353, -122.431806),
new google.maps.LatLng(37.764962, -122.432298), 386 386 new google.maps.LatLng(37.764962, -122.432298),
new google.maps.LatLng(37.764868, -122.432486), 387 387 new google.maps.LatLng(37.764868, -122.432486),
new google.maps.LatLng(37.764518, -122.432913), 388 388 new google.maps.LatLng(37.764518, -122.432913),
new google.maps.LatLng(37.763435, -122.434173), 389 389 new google.maps.LatLng(37.763435, -122.434173),
new google.maps.LatLng(37.762847, -122.434953), 390 390 new google.maps.LatLng(37.762847, -122.434953),
new google.maps.LatLng(37.762291, -122.435935), 391 391 new google.maps.LatLng(37.762291, -122.435935),
new google.maps.LatLng(37.762224, -122.436074), 392 392 new google.maps.LatLng(37.762224, -122.436074),
new google.maps.LatLng(37.761957, -122.436892), 393 393 new google.maps.LatLng(37.761957, -122.436892),
new google.maps.LatLng(37.761652, -122.438886), 394 394 new google.maps.LatLng(37.761652, -122.438886),
new google.maps.LatLng(37.761284, -122.439955), 395 395 new google.maps.LatLng(37.761284, -122.439955),
new google.maps.LatLng(37.761210, -122.440068), 396 396 new google.maps.LatLng(37.761210, -122.440068),
new google.maps.LatLng(37.761064, -122.440720), 397 397 new google.maps.LatLng(37.761064, -122.440720),
new google.maps.LatLng(37.761040, -122.441411), 398 398 new google.maps.LatLng(37.761040, -122.441411),
new google.maps.LatLng(37.761048, -122.442324), 399 399 new google.maps.LatLng(37.761048, -122.442324),
new google.maps.LatLng(37.760851, -122.443118), 400 400 new google.maps.LatLng(37.760851, -122.443118),
new google.maps.LatLng(37.759977, -122.444591), 401 401 new google.maps.LatLng(37.759977, -122.444591),
new google.maps.LatLng(37.759913, -122.444698), 402 402 new google.maps.LatLng(37.759913, -122.444698),
new google.maps.LatLng(37.759623, -122.445065), 403 403 new google.maps.LatLng(37.759623, -122.445065),
new google.maps.LatLng(37.758902, -122.445158), 404 404 new google.maps.LatLng(37.758902, -122.445158),
new google.maps.LatLng(37.758428, -122.444570), 405 405 new google.maps.LatLng(37.758428, -122.444570),
new google.maps.LatLng(37.757687, -122.443340), 406 406 new google.maps.LatLng(37.757687, -122.443340),
new google.maps.LatLng(37.757583, -122.443240), 407 407 new google.maps.LatLng(37.757583, -122.443240),
new google.maps.LatLng(37.757019, -122.442787), 408 408 new google.maps.LatLng(37.757019, -122.442787),
new google.maps.LatLng(37.756603, -122.442322), 409 409 new google.maps.LatLng(37.756603, -122.442322),
new google.maps.LatLng(37.756380, -122.441602), 410 410 new google.maps.LatLng(37.756380, -122.441602),
new google.maps.LatLng(37.755790, -122.441382), 411 411 new google.maps.LatLng(37.755790, -122.441382),
new google.maps.LatLng(37.754493, -122.442133), 412 412 new google.maps.LatLng(37.754493, -122.442133),
new google.maps.LatLng(37.754361, -122.442206), 413 413 new google.maps.LatLng(37.754361, -122.442206),
new google.maps.LatLng(37.753719, -122.442650), 414 414 new google.maps.LatLng(37.753719, -122.442650),
new google.maps.LatLng(37.753096, -122.442915), 415 415 new google.maps.LatLng(37.753096, -122.442915),
new google.maps.LatLng(37.751617, -122.443211), 416 416 new google.maps.LatLng(37.751617, -122.443211),
new google.maps.LatLng(37.751496, -122.443246), 417 417 new google.maps.LatLng(37.751496, -122.443246),
new google.maps.LatLng(37.750733, -122.443428), 418 418 new google.maps.LatLng(37.750733, -122.443428),
new google.maps.LatLng(37.750126, -122.443536), 419 419 new google.maps.LatLng(37.750126, -122.443536),
new google.maps.LatLng(37.750103, -122.443784), 420 420 new google.maps.LatLng(37.750103, -122.443784),
new google.maps.LatLng(37.750390, -122.444010), 421 421 new google.maps.LatLng(37.750390, -122.444010),
new google.maps.LatLng(37.750448, -122.444013), 422 422 new google.maps.LatLng(37.750448, -122.444013),
new google.maps.LatLng(37.750536, -122.444040), 423 423 new google.maps.LatLng(37.750536, -122.444040),
new google.maps.LatLng(37.750493, -122.444141), 424 424 new google.maps.LatLng(37.750493, -122.444141),
new google.maps.LatLng(37.790859, -122.402808), 425 425 new google.maps.LatLng(37.790859, -122.402808),
new google.maps.LatLng(37.790864, -122.402768), 426 426 new google.maps.LatLng(37.790864, -122.402768),
new google.maps.LatLng(37.790995, -122.402539), 427 427 new google.maps.LatLng(37.790995, -122.402539),
new google.maps.LatLng(37.791148, -122.402172), 428 428 new google.maps.LatLng(37.791148, -122.402172),
new google.maps.LatLng(37.791385, -122.401312), 429 429 new google.maps.LatLng(37.791385, -122.401312),
new google.maps.LatLng(37.791405, -122.400776), 430 430 new google.maps.LatLng(37.791405, -122.400776),
new google.maps.LatLng(37.791288, -122.400528), 431 431 new google.maps.LatLng(37.791288, -122.400528),
new google.maps.LatLng(37.791113, -122.400441), 432 432 new google.maps.LatLng(37.791113, -122.400441),
new google.maps.LatLng(37.791027, -122.400395), 433 433 new google.maps.LatLng(37.791027, -122.400395),
new google.maps.LatLng(37.791094, -122.400311), 434 434 new google.maps.LatLng(37.791094, -122.400311),
new google.maps.LatLng(37.791211, -122.400183), 435 435 new google.maps.LatLng(37.791211, -122.400183),
new google.maps.LatLng(37.791060, -122.399334), 436 436 new google.maps.LatLng(37.791060, -122.399334),
new google.maps.LatLng(37.790538, -122.398718), 437 437 new google.maps.LatLng(37.790538, -122.398718),
new google.maps.LatLng(37.790095, -122.398086), 438 438 new google.maps.LatLng(37.790095, -122.398086),
new google.maps.LatLng(37.789644, -122.397360), 439 439 new google.maps.LatLng(37.789644, -122.397360),
new google.maps.LatLng(37.789254, -122.396844), 440 440 new google.maps.LatLng(37.789254, -122.396844),
new google.maps.LatLng(37.788855, -122.396397), 441 441 new google.maps.LatLng(37.788855, -122.396397),
new google.maps.LatLng(37.788483, -122.395963), 442 442 new google.maps.LatLng(37.788483, -122.395963),
new google.maps.LatLng(37.788015, -122.395365), 443 443 new google.maps.LatLng(37.788015, -122.395365),
new google.maps.LatLng(37.787558, -122.394735), 444 444 new google.maps.LatLng(37.787558, -122.394735),
new google.maps.LatLng(37.787472, -122.394323), 445 445 new google.maps.LatLng(37.787472, -122.394323),
new google.maps.LatLng(37.787630, -122.394025), 446 446 new google.maps.LatLng(37.787630, -122.394025),
new google.maps.LatLng(37.787767, -122.393987), 447 447 new google.maps.LatLng(37.787767, -122.393987),
new google.maps.LatLng(37.787486, -122.394452), 448 448 new google.maps.LatLng(37.787486, -122.394452),
new google.maps.LatLng(37.786977, -122.395043), 449 449 new google.maps.LatLng(37.786977, -122.395043),
new google.maps.LatLng(37.786583, -122.395552), 450 450 new google.maps.LatLng(37.786583, -122.395552),
new google.maps.LatLng(37.786540, -122.395610), 451 451 new google.maps.LatLng(37.786540, -122.395610),
new google.maps.LatLng(37.786516, -122.395659), 452 452 new google.maps.LatLng(37.786516, -122.395659),
new google.maps.LatLng(37.786378, -122.395707), 453 453 new google.maps.LatLng(37.786378, -122.395707),
new google.maps.LatLng(37.786044, -122.395362), 454 454 new google.maps.LatLng(37.786044, -122.395362),
new google.maps.LatLng(37.785598, -122.394715), 455 455 new google.maps.LatLng(37.785598, -122.394715),
new google.maps.LatLng(37.785321, -122.394361), 456 456 new google.maps.LatLng(37.785321, -122.394361),
new google.maps.LatLng(37.785207, -122.394236), 457 457 new google.maps.LatLng(37.785207, -122.394236),
new google.maps.LatLng(37.785751, -122.394062), 458 458 new google.maps.LatLng(37.785751, -122.394062),
new google.maps.LatLng(37.785996, -122.393881), 459 459 new google.maps.LatLng(37.785996, -122.393881),
new google.maps.LatLng(37.786092, -122.393830), 460 460 new google.maps.LatLng(37.786092, -122.393830),
new google.maps.LatLng(37.785998, -122.393899), 461 461 new google.maps.LatLng(37.785998, -122.393899),
new google.maps.LatLng(37.785114, -122.394365), 462 462 new google.maps.LatLng(37.785114, -122.394365),
new google.maps.LatLng(37.785022, -122.394441), 463 463 new google.maps.LatLng(37.785022, -122.394441),
new google.maps.LatLng(37.784823, -122.394635), 464 464 new google.maps.LatLng(37.784823, -122.394635),
new google.maps.LatLng(37.784719, -122.394629), 465 465 new google.maps.LatLng(37.784719, -122.394629),
new google.maps.LatLng(37.785069, -122.394176), 466 466 new google.maps.LatLng(37.785069, -122.394176),
new google.maps.LatLng(37.785500, -122.393650), 467 467 new google.maps.LatLng(37.785500, -122.393650),
new google.maps.LatLng(37.785770, -122.393291), 468 468 new google.maps.LatLng(37.785770, -122.393291),
new google.maps.LatLng(37.785839, -122.393159), 469 469 new google.maps.LatLng(37.785839, -122.393159),
new google.maps.LatLng(37.782651, -122.400628), 470 470 new google.maps.LatLng(37.782651, -122.400628),
new google.maps.LatLng(37.782616, -122.400599), 471 471 new google.maps.LatLng(37.782616, -122.400599),
new google.maps.LatLng(37.782702, -122.400470), 472 472 new google.maps.LatLng(37.782702, -122.400470),
new google.maps.LatLng(37.782915, -122.400192), 473 473 new google.maps.LatLng(37.782915, -122.400192),
new google.maps.LatLng(37.783137, -122.399887), 474 474 new google.maps.LatLng(37.783137, -122.399887),
new google.maps.LatLng(37.783414, -122.399519), 475 475 new google.maps.LatLng(37.783414, -122.399519),
new google.maps.LatLng(37.783629, -122.399237), 476 476 new google.maps.LatLng(37.783629, -122.399237),
new google.maps.LatLng(37.783688, -122.399157), 477 477 new google.maps.LatLng(37.783688, -122.399157),
new google.maps.LatLng(37.783716, -122.399106), 478 478 new google.maps.LatLng(37.783716, -122.399106),
new google.maps.LatLng(37.783798, -122.399072), 479 479 new google.maps.LatLng(37.783798, -122.399072),
new google.maps.LatLng(37.783997, -122.399186), 480 480 new google.maps.LatLng(37.783997, -122.399186),
new google.maps.LatLng(37.784271, -122.399538), 481 481 new google.maps.LatLng(37.784271, -122.399538),
new google.maps.LatLng(37.784577, -122.399948), 482 482 new google.maps.LatLng(37.784577, -122.399948),
new google.maps.LatLng(37.784828, -122.400260), 483 483 new google.maps.LatLng(37.784828, -122.400260),
new google.maps.LatLng(37.784999, -122.400477), 484 484 new google.maps.LatLng(37.784999, -122.400477),
new google.maps.LatLng(37.785113, -122.400651), 485 485 new google.maps.LatLng(37.785113, -122.400651),
new google.maps.LatLng(37.785155, -122.400703), 486 486 new google.maps.LatLng(37.785155, -122.400703),
new google.maps.LatLng(37.785192, -122.400749), 487 487 new google.maps.LatLng(37.785192, -122.400749),
new google.maps.LatLng(37.785278, -122.400839), 488 488 new google.maps.LatLng(37.785278, -122.400839),
new google.maps.LatLng(37.785387, -122.400857), 489 489 new google.maps.LatLng(37.785387, -122.400857),
new google.maps.LatLng(37.785478, -122.400890), 490 490 new google.maps.LatLng(37.785478, -122.400890),
new google.maps.LatLng(37.785526, -122.401022), 491 491 new google.maps.LatLng(37.785526, -122.401022),
new google.maps.LatLng(37.785598, -122.401148), 492 492 new google.maps.LatLng(37.785598, -122.401148),
new google.maps.LatLng(37.785631, -122.401202), 493 493 new google.maps.LatLng(37.785631, -122.401202),
new google.maps.LatLng(37.785660, -122.401267), 494 494 new google.maps.LatLng(37.785660, -122.401267),
new google.maps.LatLng(37.803986, -122.426035), 495 495 new google.maps.LatLng(37.803986, -122.426035),
new google.maps.LatLng(37.804102, -122.425089), 496 496 new google.maps.LatLng(37.804102, -122.425089),
new google.maps.LatLng(37.804211, -122.424156), 497 497 new google.maps.LatLng(37.804211, -122.424156),
new google.maps.LatLng(37.803861, -122.423385), 498 498 new google.maps.LatLng(37.803861, -122.423385),
new google.maps.LatLng(37.803151, -122.423214), 499 499 new google.maps.LatLng(37.803151, -122.423214),
new google.maps.LatLng(37.802439, -122.423077), 500 500 new google.maps.LatLng(37.802439, -122.423077),
new google.maps.LatLng(37.801740, -122.422905), 501 501 new google.maps.LatLng(37.801740, -122.422905),
new google.maps.LatLng(37.801069, -122.422785), 502 502 new google.maps.LatLng(37.801069, -122.422785),
new google.maps.LatLng(37.800345, -122.422649), 503 503 new google.maps.LatLng(37.800345, -122.422649),
new google.maps.LatLng(37.799633, -122.422603), 504 504 new google.maps.LatLng(37.799633, -122.422603),
new google.maps.LatLng(37.799750, -122.421700), 505 505 new google.maps.LatLng(37.799750, -122.421700),
new google.maps.LatLng(37.799885, -122.420854), 506 506 new google.maps.LatLng(37.799885, -122.420854),
new google.maps.LatLng(37.799209, -122.420607), 507 507 new google.maps.LatLng(37.799209, -122.420607),
new google.maps.LatLng(37.795656, -122.400395), 508 508 new google.maps.LatLng(37.795656, -122.400395),
new google.maps.LatLng(37.795203, -122.400304), 509 509 new google.maps.LatLng(37.795203, -122.400304),
new google.maps.LatLng(37.778738, -122.415584), 510 510 new google.maps.LatLng(37.778738, -122.415584),
new google.maps.LatLng(37.778812, -122.415189), 511 511 new google.maps.LatLng(37.778812, -122.415189),
new google.maps.LatLng(37.778824, -122.415092), 512 512 new google.maps.LatLng(37.778824, -122.415092),
new google.maps.LatLng(37.778833, -122.414932), 513 513 new google.maps.LatLng(37.778833, -122.414932),
new google.maps.LatLng(37.778834, -122.414898), 514 514 new google.maps.LatLng(37.778834, -122.414898),
new google.maps.LatLng(37.778740, -122.414757), 515 515 new google.maps.LatLng(37.778740, -122.414757),
new google.maps.LatLng(37.778501, -122.414433), 516 516 new google.maps.LatLng(37.778501, -122.414433),
new google.maps.LatLng(37.778182, -122.414026), 517 517 new google.maps.LatLng(37.778182, -122.414026),
new google.maps.LatLng(37.777851, -122.413623), 518 518 new google.maps.LatLng(37.777851, -122.413623),
new google.maps.LatLng(37.777486, -122.413166), 519 519 new google.maps.LatLng(37.777486, -122.413166),
new google.maps.LatLng(37.777109, -122.412674), 520 520 new google.maps.LatLng(37.777109, -122.412674),
new google.maps.LatLng(37.776743, -122.412186), 521 521 new google.maps.LatLng(37.776743, -122.412186),
new google.maps.LatLng(37.776440, -122.411800), 522 522 new google.maps.LatLng(37.776440, -122.411800),
new google.maps.LatLng(37.776295, -122.411614), 523 523 new google.maps.LatLng(37.776295, -122.411614),
new google.maps.LatLng(37.776158, -122.411440), 524 524 new google.maps.LatLng(37.776158, -122.411440),
new google.maps.LatLng(37.775806, -122.410997), 525 525 new google.maps.LatLng(37.775806, -122.410997),
new google.maps.LatLng(37.775422, -122.410484), 526 526 new google.maps.LatLng(37.775422, -122.410484),
new google.maps.LatLng(37.775126, -122.410087), 527 527 new google.maps.LatLng(37.775126, -122.410087),
new google.maps.LatLng(37.775012, -122.409854), 528 528 new google.maps.LatLng(37.775012, -122.409854),
new google.maps.LatLng(37.775164, -122.409573), 529 529 new google.maps.LatLng(37.775164, -122.409573),
new google.maps.LatLng(37.775498, -122.409180), 530 530 new google.maps.LatLng(37.775498, -122.409180),
new google.maps.LatLng(37.775868, -122.408730), 531 531 new google.maps.LatLng(37.775868, -122.408730),
new google.maps.LatLng(37.776256, -122.408240), 532 532 new google.maps.LatLng(37.776256, -122.408240),
new google.maps.LatLng(37.776519, -122.407928), 533 533 new google.maps.LatLng(37.776519, -122.407928),
new google.maps.LatLng(37.776539, -122.407904), 534 534 new google.maps.LatLng(37.776539, -122.407904),
new google.maps.LatLng(37.776595, -122.407854), 535 535 new google.maps.LatLng(37.776595, -122.407854),
new google.maps.LatLng(37.776853, -122.407547), 536 536 new google.maps.LatLng(37.776853, -122.407547),
new google.maps.LatLng(37.777234, -122.407087), 537 537 new google.maps.LatLng(37.777234, -122.407087),
new google.maps.LatLng(37.777644, -122.406558), 538 538 new google.maps.LatLng(37.777644, -122.406558),
new google.maps.LatLng(37.778066, -122.406017), 539 539 new google.maps.LatLng(37.778066, -122.406017),
new google.maps.LatLng(37.778468, -122.405499), 540 540 new google.maps.LatLng(37.778468, -122.405499),
new google.maps.LatLng(37.778866, -122.404995), 541 541 new google.maps.LatLng(37.778866, -122.404995),
new google.maps.LatLng(37.779295, -122.404455), 542 542 new google.maps.LatLng(37.779295, -122.404455),
new google.maps.LatLng(37.779695, -122.403950), 543 543 new google.maps.LatLng(37.779695, -122.403950),
new google.maps.LatLng(37.779982, -122.403584), 544 544 new google.maps.LatLng(37.779982, -122.403584),
new google.maps.LatLng(37.780295, -122.403223), 545 545 new google.maps.LatLng(37.780295, -122.403223),
new google.maps.LatLng(37.780664, -122.402766), 546 546 new google.maps.LatLng(37.780664, -122.402766),
new google.maps.LatLng(37.781043, -122.402288), 547 547 new google.maps.LatLng(37.781043, -122.402288),
new google.maps.LatLng(37.781399, -122.401823), 548 548 new google.maps.LatLng(37.781399, -122.401823),
new google.maps.LatLng(37.781727, -122.401407), 549 549 new google.maps.LatLng(37.781727, -122.401407),
new google.maps.LatLng(37.781853, -122.401247), 550 550 new google.maps.LatLng(37.781853, -122.401247),
new google.maps.LatLng(37.781894, -122.401195), 551 551 new google.maps.LatLng(37.781894, -122.401195),
new google.maps.LatLng(37.782076, -122.400977), 552 552 new google.maps.LatLng(37.782076, -122.400977),
new google.maps.LatLng(37.782338, -122.400603), 553 553 new google.maps.LatLng(37.782338, -122.400603),
new google.maps.LatLng(37.782666, -122.400133), 554 554 new google.maps.LatLng(37.782666, -122.400133),
new google.maps.LatLng(37.783048, -122.399634), 555 555 new google.maps.LatLng(37.783048, -122.399634),
new google.maps.LatLng(37.783450, -122.399198), 556 556 new google.maps.LatLng(37.783450, -122.399198),
new google.maps.LatLng(37.783791, -122.398998), 557 557 new google.maps.LatLng(37.783791, -122.398998),
new google.maps.LatLng(37.784177, -122.398959), 558 558 new google.maps.LatLng(37.784177, -122.398959),
new google.maps.LatLng(37.784388, -122.398971), 559 559 new google.maps.LatLng(37.784388, -122.398971),
new google.maps.LatLng(37.784404, -122.399128), 560 560 new google.maps.LatLng(37.784404, -122.399128),
new google.maps.LatLng(37.784586, -122.399524), 561 561 new google.maps.LatLng(37.784586, -122.399524),
new google.maps.LatLng(37.784835, -122.399927), 562 562 new google.maps.LatLng(37.784835, -122.399927),
new google.maps.LatLng(37.785116, -122.400307), 563 563 new google.maps.LatLng(37.785116, -122.400307),
new google.maps.LatLng(37.785282, -122.400539), 564 564 new google.maps.LatLng(37.785282, -122.400539),
new google.maps.LatLng(37.785346, -122.400692), 565 565 new google.maps.LatLng(37.785346, -122.400692),
new google.maps.LatLng(37.765769, -122.407201), 566 566 new google.maps.LatLng(37.765769, -122.407201),
new google.maps.LatLng(37.765790, -122.407414), 567 567 new google.maps.LatLng(37.765790, -122.407414),
new google.maps.LatLng(37.765802, -122.407755), 568 568 new google.maps.LatLng(37.765802, -122.407755),
new google.maps.LatLng(37.765791, -122.408219), 569 569 new google.maps.LatLng(37.765791, -122.408219),
new google.maps.LatLng(37.765763, -122.408759), 570 570 new google.maps.LatLng(37.765763, -122.408759),
new google.maps.LatLng(37.765726, -122.409348), 571 571 new google.maps.LatLng(37.765726, -122.409348),
new google.maps.LatLng(37.765716, -122.409882), 572 572 new google.maps.LatLng(37.765716, -122.409882),
new google.maps.LatLng(37.765708, -122.410202), 573 573 new google.maps.LatLng(37.765708, -122.410202),
new google.maps.LatLng(37.765705, -122.410253), 574 574 new google.maps.LatLng(37.765705, -122.410253),
new google.maps.LatLng(37.765707, -122.410369), 575 575 new google.maps.LatLng(37.765707, -122.410369),
new google.maps.LatLng(37.765692, -122.410720), 576 576 new google.maps.LatLng(37.765692, -122.410720),
new google.maps.LatLng(37.765699, -122.411215), 577 577 new google.maps.LatLng(37.765699, -122.411215),
new google.maps.LatLng(37.765687, -122.411789), 578 578 new google.maps.LatLng(37.765687, -122.411789),
new google.maps.LatLng(37.765666, -122.412373), 579 579 new google.maps.LatLng(37.765666, -122.412373),
new google.maps.LatLng(37.765598, -122.412883), 580 580 new google.maps.LatLng(37.765598, -122.412883),
new google.maps.LatLng(37.765543, -122.413039), 581 581 new google.maps.LatLng(37.765543, -122.413039),
new google.maps.LatLng(37.765532, -122.413125), 582 582 new google.maps.LatLng(37.765532, -122.413125),
new google.maps.LatLng(37.765500, -122.413553), 583 583 new google.maps.LatLng(37.765500, -122.413553),
new google.maps.LatLng(37.765448, -122.414053), 584 584 new google.maps.LatLng(37.765448, -122.414053),
new google.maps.LatLng(37.765388, -122.414645), 585 585 new google.maps.LatLng(37.765388, -122.414645),
new google.maps.LatLng(37.765323, -122.415250), 586 586 new google.maps.LatLng(37.765323, -122.415250),
new google.maps.LatLng(37.765303, -122.415847), 587 587 new google.maps.LatLng(37.765303, -122.415847),
new google.maps.LatLng(37.765251, -122.416439), 588 588 new google.maps.LatLng(37.765251, -122.416439),
new google.maps.LatLng(37.765204, -122.417020), 589 589 new google.maps.LatLng(37.765204, -122.417020),
new google.maps.LatLng(37.765172, -122.417556), 590 590 new google.maps.LatLng(37.765172, -122.417556),
new google.maps.LatLng(37.765164, -122.418075), 591 591 new google.maps.LatLng(37.765164, -122.418075),
new google.maps.LatLng(37.765153, -122.418618), 592 592 new google.maps.LatLng(37.765153, -122.418618),
new google.maps.LatLng(37.765136, -122.419112), 593 593 new google.maps.LatLng(37.765136, -122.419112),
new google.maps.LatLng(37.765129, -122.419378), 594 594 new google.maps.LatLng(37.765129, -122.419378),
new google.maps.LatLng(37.765119, -122.419481), 595 595 new google.maps.LatLng(37.765119, -122.419481),
new google.maps.LatLng(37.765100, -122.419852), 596 596 new google.maps.LatLng(37.765100, -122.419852),
new google.maps.LatLng(37.765083, -122.420349), 597 597 new google.maps.LatLng(37.765083, -122.420349),
new google.maps.LatLng(37.765045, -122.420930), 598 598 new google.maps.LatLng(37.765045, -122.420930),
new google.maps.LatLng(37.764992, -122.421481), 599 599 new google.maps.LatLng(37.764992, -122.421481),
new google.maps.LatLng(37.764980, -122.421695), 600 600 new google.maps.LatLng(37.764980, -122.421695),
new google.maps.LatLng(37.764993, -122.421843), 601 601 new google.maps.LatLng(37.764993, -122.421843),
new google.maps.LatLng(37.764986, -122.422255), 602 602 new google.maps.LatLng(37.764986, -122.422255),
new google.maps.LatLng(37.764975, -122.422823), 603 603 new google.maps.LatLng(37.764975, -122.422823),
new google.maps.LatLng(37.764939, -122.423411), 604 604 new google.maps.LatLng(37.764939, -122.423411),
new google.maps.LatLng(37.764902, -122.424014), 605 605 new google.maps.LatLng(37.764902, -122.424014),
new google.maps.LatLng(37.764853, -122.424576), 606 606 new google.maps.LatLng(37.764853, -122.424576),
new google.maps.LatLng(37.764826, -122.424922), 607 607 new google.maps.LatLng(37.764826, -122.424922),
new google.maps.LatLng(37.764796, -122.425375), 608 608 new google.maps.LatLng(37.764796, -122.425375),
new google.maps.LatLng(37.764782, -122.425869), 609 609 new google.maps.LatLng(37.764782, -122.425869),
new google.maps.LatLng(37.764768, -122.426089), 610 610 new google.maps.LatLng(37.764768, -122.426089),
new google.maps.LatLng(37.764766, -122.426117), 611 611 new google.maps.LatLng(37.764766, -122.426117),
new google.maps.LatLng(37.764723, -122.426276), 612 612 new google.maps.LatLng(37.764723, -122.426276),
new google.maps.LatLng(37.764681, -122.426649), 613 613 new google.maps.LatLng(37.764681, -122.426649),
new google.maps.LatLng(37.782012, -122.404200), 614 614 new google.maps.LatLng(37.782012, -122.404200),
new google.maps.LatLng(37.781574, -122.404911), 615 615 new google.maps.LatLng(37.781574, -122.404911),
new google.maps.LatLng(37.781055, -122.405597), 616 616 new google.maps.LatLng(37.781055, -122.405597),
new google.maps.LatLng(37.780479, -122.406341), 617 617 new google.maps.LatLng(37.780479, -122.406341),
new google.maps.LatLng(37.779996, -122.406939), 618 618 new google.maps.LatLng(37.779996, -122.406939),
new google.maps.LatLng(37.779459, -122.407613), 619 619 new google.maps.LatLng(37.779459, -122.407613),
new google.maps.LatLng(37.778953, -122.408228), 620 620 new google.maps.LatLng(37.778953, -122.408228),
new google.maps.LatLng(37.778409, -122.408839), 621 621 new google.maps.LatLng(37.778409, -122.408839),
new google.maps.LatLng(37.777842, -122.409501), 622 622 new google.maps.LatLng(37.777842, -122.409501),
new google.maps.LatLng(37.777334, -122.410181), 623 623 new google.maps.LatLng(37.777334, -122.410181),
new google.maps.LatLng(37.776809, -122.410836), 624 624 new google.maps.LatLng(37.776809, -122.410836),
new google.maps.LatLng(37.776240, -122.411514), 625 625 new google.maps.LatLng(37.776240, -122.411514),
new google.maps.LatLng(37.775725, -122.412145), 626 626 new google.maps.LatLng(37.775725, -122.412145),
new google.maps.LatLng(37.775190, -122.412805), 627 627 new google.maps.LatLng(37.775190, -122.412805),
new google.maps.LatLng(37.774672, -122.413464), 628 628 new google.maps.LatLng(37.774672, -122.413464),
new google.maps.LatLng(37.774084, -122.414186), 629 629 new google.maps.LatLng(37.774084, -122.414186),
new google.maps.LatLng(37.773533, -122.413636), 630 630 new google.maps.LatLng(37.773533, -122.413636),
new google.maps.LatLng(37.773021, -122.413009), 631 631 new google.maps.LatLng(37.773021, -122.413009),
new google.maps.LatLng(37.772501, -122.412371), 632 632 new google.maps.LatLng(37.772501, -122.412371),
new google.maps.LatLng(37.771964, -122.411681), 633 633 new google.maps.LatLng(37.771964, -122.411681),
new google.maps.LatLng(37.771479, -122.411078), 634 634 new google.maps.LatLng(37.771479, -122.411078),
new google.maps.LatLng(37.770992, -122.410477), 635 635 new google.maps.LatLng(37.770992, -122.410477),
new google.maps.LatLng(37.770467, -122.409801), 636 636 new google.maps.LatLng(37.770467, -122.409801),
new google.maps.LatLng(37.770090, -122.408904), 637 637 new google.maps.LatLng(37.770090, -122.408904),
new google.maps.LatLng(37.769657, -122.408103), 638 638 new google.maps.LatLng(37.769657, -122.408103),
new google.maps.LatLng(37.769132, -122.407276), 639 639 new google.maps.LatLng(37.769132, -122.407276),
new google.maps.LatLng(37.768564, -122.406469), 640 640 new google.maps.LatLng(37.768564, -122.406469),
new google.maps.LatLng(37.767980, -122.405745), 641 641 new google.maps.LatLng(37.767980, -122.405745),
new google.maps.LatLng(37.767380, -122.405299), 642 642 new google.maps.LatLng(37.767380, -122.405299),
new google.maps.LatLng(37.766604, -122.405297), 643 643 new google.maps.LatLng(37.766604, -122.405297),
new google.maps.LatLng(37.765838, -122.405200), 644 644 new google.maps.LatLng(37.765838, -122.405200),
new google.maps.LatLng(37.765139, -122.405139), 645 645 new google.maps.LatLng(37.765139, -122.405139),
new google.maps.LatLng(37.764457, -122.405094), 646 646 new google.maps.LatLng(37.764457, -122.405094),
new google.maps.LatLng(37.763716, -122.405142), 647 647 new google.maps.LatLng(37.763716, -122.405142),
new google.maps.LatLng(37.762932, -122.405398), 648 648 new google.maps.LatLng(37.762932, -122.405398),
new google.maps.LatLng(37.762126, -122.405813), 649 649 new google.maps.LatLng(37.762126, -122.405813),
new google.maps.LatLng(37.761344, -122.406215), 650 650 new google.maps.LatLng(37.761344, -122.406215),
new google.maps.LatLng(37.760556, -122.406495), 651 651 new google.maps.LatLng(37.760556, -122.406495),
new google.maps.LatLng(37.759732, -122.406484), 652 652 new google.maps.LatLng(37.759732, -122.406484),
new google.maps.LatLng(37.758910, -122.406228), 653 653 new google.maps.LatLng(37.758910, -122.406228),
new google.maps.LatLng(37.758182, -122.405695), 654 654 new google.maps.LatLng(37.758182, -122.405695),
new google.maps.LatLng(37.757676, -122.405118), 655 655 new google.maps.LatLng(37.757676, -122.405118),
new google.maps.LatLng(37.757039, -122.404346), 656 656 new google.maps.LatLng(37.757039, -122.404346),
new google.maps.LatLng(37.756335, -122.403719), 657 657 new google.maps.LatLng(37.756335, -122.403719),
new google.maps.LatLng(37.755503, -122.403406), 658 658 new google.maps.LatLng(37.755503, -122.403406),
new google.maps.LatLng(37.754665, -122.403242), 659 659 new google.maps.LatLng(37.754665, -122.403242),
new google.maps.LatLng(37.753837, -122.403172), 660 660 new google.maps.LatLng(37.753837, -122.403172),
new google.maps.LatLng(37.752986, -122.403112), 661 661 new google.maps.LatLng(37.752986, -122.403112),
new google.maps.LatLng(37.751266, -122.403355) 662 662 new google.maps.LatLng(37.751266, -122.403355)
]; 663 663 ];
} 664 664 }
</script> 665 665 </script>
666 666
<!-- Calling google maps API using the function defined above. --> 667 667 <!-- Calling google maps API using the function defined above. -->
<script async defer 668 668 <script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDAXDHeZXEv4H4ZnThVDxpyAuxVpzOcj_U&callback=initMap&libraries=visualization,places"> 669 669 src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDAXDHeZXEv4H4ZnThVDxpyAuxVpzOcj_U&callback=initMap&libraries=visualization,places">
</script> 670 670 </script>
671 671
<!-- Buttons at the bottom of the map --> 672 672 <!-- Buttons at the bottom of the map -->
<div class="container"> 673 673 <div class="container">
<div class="row"> 674 674 <div class="row">
<!-- Status --> 675 675 <!-- Status -->
<div class="col-xs-4"> 676 676 <div class="col-xs-4">
<!-- Title: Current Area --> 677 677 <!-- Title: Current Area -->
<div> 678 678 <div>
Current Area: 679 679 Current Area:
</div> 680 680 </div>
<!-- Icons + Status --> 681 681 <!-- Icons + Status -->
<div> 682 682 <div>