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