forked from rhiever/optimal-roadtrip-usa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
science-road-trip.html
462 lines (344 loc) · 28.9 KB
/
science-road-trip.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta name="description" content="Randy Olson and Science Friday map a road trip stopping at some of the most interesting science stops in the continental U.S.A.">
<meta name="author" content="Randal S. Olson / Science Friday">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<title>The Ultimate Geek Road Trip</title>
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
#panel {
position: absolute;
top: 5px;
left: 50%;
margin-left: -180px;
z-index: 5;
background-color: #fff;
padding: 10px;
border: 1px solid #999;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
<script>
var directionsDisplay1, directionsDisplay2;
var directionsDisplay3;
var marker1, marker2, marker3, marker4, marker5, marker6, marker7, marker8, marker9, marker10, marker11, marker12, marker13, marker14, marker15, marker16, marker17, marker18, marker19, marker20, marker21, marker22, marker23, marker24, marker25, marker26, marker27;
var infoWindows = [];
var markerOptions = {icon: "http://maps.gstatic.com/mapfiles/markers2/marker.png", zIndex: 1};
var routeMarkerOptions = {visible: false, zIndex: 0};
var directionsDisplayOptions = {preserveViewport: true,
markerOptions: routeMarkerOptions};
var directionsService = new google.maps.DirectionsService();
var map;
function initialize() {
var center = new google.maps.LatLng(39, -96);
var mapOptions = {
zoom: 5,
center: center
};
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
directionsDisplay1.setMap(map);
directionsDisplay2.setMap(map);
directionsDisplay3.setMap(map);
marker1.setMap(map); marker2.setMap(map); marker3.setMap(map); marker4.setMap(map); marker5.setMap(map); marker6.setMap(map); marker7.setMap(map); marker8.setMap(map); marker9.setMap(map); marker10.setMap(map); marker11.setMap(map); marker12.setMap(map); marker13.setMap(map); marker14.setMap(map); marker15.setMap(map); marker16.setMap(map); marker17.setMap(map); marker18.setMap(map); marker19.setMap(map); marker20.setMap(map); marker21.setMap(map); marker22.setMap(map); marker23.setMap(map); marker24.setMap(map); marker25.setMap(map); marker26.setMap(map); marker27.setMap(map);
}
function calcRoute(start, end, routes) {
switch (start) {
case "U.S. Space and Rocket Center, Huntsville, AL":
directionsDisplay1 = new google.maps.DirectionsRenderer(directionsDisplayOptions);
break;
case "Pictured Rocks National Lakeshore, Munising, MI":
directionsDisplay2 = new google.maps.DirectionsRenderer(directionsDisplayOptions);
break;
case "NASA’s Jet Propulsion Laboratory, Pasadena, CA":
directionsDisplay3 = new google.maps.DirectionsRenderer(directionsDisplayOptions);
break;
}
var waypts = [];
for (var i = 0; i < routes.length; i++) {
waypts.push({
location:routes[i],
stopover:true});
}
var request = {
origin: start,
destination: end,
waypoints: waypts,
optimizeWaypoints: false,
travelMode: google.maps.TravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
switch (start) {
case "U.S. Space and Rocket Center, Huntsville, AL":
directionsDisplay1.setDirections(response);
break;
case "Pictured Rocks National Lakeshore, Munising, MI":
directionsDisplay2.setDirections(response);
break;
case "NASA’s Jet Propulsion Laboratory, Pasadena, CA":
directionsDisplay3.setDirections(response);
break;
}
}
});
}
google.maps.event.addDomListener(window, 'load', initialize);
calcRoute("U.S. Space and Rocket Center, Huntsville, AL", "Pictured Rocks National Lakeshore, Munising, MI", ["Oak Ridge National Laboratory, Oak Ridge, TN", "Steven F. Udvar-Hazy Center, Chantilly, VA", "Chemical Heritage Museum, Philadelphia, PA", "The New England Wireless and Steam Museum, East Greenwich, RI", "French Cable Station Museum, Orleans, MA", "The Museum of Printing, North Andover, MA", "Sleeping Bear Dunes National Lakeshore, Empire, MI", "Headlands Dark Sky Park, Mackinaw City, MI"]);
calcRoute("Pictured Rocks National Lakeshore, Munising, MI", "NASA’s Jet Propulsion Laboratory, Pasadena, CA", ["Missouri Botanical Garden, St. Louis, MO", "Strategic Air & Space Museum, Ashland, NE", "Kansas Cosmosphere & Space Center, Hutchinson, KS", "Dinosaur Valley State Park, Glen Rose, TX", "Garden of the Gods, Colorado Springs, CO", "Los Alamos National Laboratory, Los Alamos, NM", "Lowell Observatory, Flagstaff, AZ", "Steward Observatory Mirror Lab, The University of Arizona, Tucson, AZ"]);
calcRoute("NASA’s Jet Propulsion Laboratory, Pasadena, CA", "U.S. Space and Rocket Center, Huntsville, AL", ["La Brea Tar Pits & Museum, Los Angeles, CA", "Lassen Volcanic National Park, Mineral, CA", "EMP Museum, Seattle, WA", "NOAA Sound Garden, Seattle, WA", "Glacier National Park, West Glacier, MT", "Experimental Breeder Reactor No. 1, Arco, ID", "Craters of the Moon National Monument, Arco, ID", "Kennedy Space Center, FL"]);
var infoWindow1 = new google.maps.InfoWindow({ content: "<a href='http://rocketcenter.com/' target='_blank'><h4>U.S. Space and Rocket Center, Huntsville, AL</h4></a>Visit the U.S. Space and Rocket Center in Huntsville to see a REAL Saturn V rocket! Suggested by SciFri’s Christian Skotte."
});
infoWindows.push(infoWindow1);
marker1 = new google.maps.Marker({
position: new google.maps.LatLng(34.712069, -86.65548799999999),
options: markerOptions,
title: "U.S. Space and Rocket Center, Huntsville, AL"
});
google.maps.event.addListener(marker1, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow1.open(map, marker1); });
var infoWindow2 = new google.maps.InfoWindow({ content: "<a href='http://www.ornl.gov/ornl/visiting-ornl/tours' target='_blank'><h4>Oak Ridge National Laboratory, Oak Ridge, TN</h4></a>Visit the largest science and energy lab in the DOE’s system, home to the Titan supercomputer. Suggested by Clint Weathers (@zenrhino)."
});
infoWindows.push(infoWindow2);
marker2 = new google.maps.Marker({
position: new google.maps.LatLng(35.9313167, -84.31041239999999),
options: markerOptions,
title: "Oak Ridge National Laboratory, Oak Ridge, TN"
});
google.maps.event.addListener(marker2, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow2.open(map, marker2); });
var infoWindow3 = new google.maps.InfoWindow({ content: "<a href='https://airandspace.si.edu/visit/udvar-hazy-center/' target='_blank'><h4>Steven F. Udvar-Hazy Center, Chantilly, VA</h4></a>Nine Hour Films (@ninehourfilms) says “You would have to hit at least one Smithsonian. I got Udvar-Hazy to visit the space shuttle.”"
});
infoWindows.push(infoWindow3);
marker3 = new google.maps.Marker({
position: new google.maps.LatLng(38.9109189, -77.44420749999999),
options: markerOptions,
title: "Steven F. Udvar-Hazy Center, Chantilly, VA"
});
google.maps.event.addListener(marker3, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow3.open(map, marker3); });
var infoWindow4 = new google.maps.InfoWindow({ content: "<a href='https://www.chemheritage.org/' target='_blank'><h4>Chemical Heritage Museum, Philadelphia, PA</h4></a>Ben Gross @bhgross144 says “add some history of science to your SciFri Road Trip with a visit to the Chemical Heritage Museum.”"
});
infoWindows.push(infoWindow4);
marker4 = new google.maps.Marker({
position: new google.maps.LatLng(39.9490235, -75.1464426),
options: markerOptions,
title: "Chemical Heritage Museum, Philadelphia, PA"
});
google.maps.event.addListener(marker4, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow4.open(map, marker4); });
var infoWindow5 = new google.maps.InfoWindow({ content: "<a href='http://www.newsm.org/ ' target='_blank'><h4>The New England Wireless and Steam Museum, East Greenwich, RI</h4></a>The New England Wireless and Steam Museum is home to the oldest surviving working wireless station in the world. Suggested by William Ricker (@n1vux)."
});
infoWindows.push(infoWindow5);
marker5 = new google.maps.Marker({
position: new google.maps.LatLng(41.624269, -71.51302),
options: markerOptions,
title: "The New England Wireless and Steam Museum, East Greenwich, RI"
});
google.maps.event.addListener(marker5, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow5.open(map, marker5); });
var infoWindow6 = new google.maps.InfoWindow({ content: "<a href='http://www.frenchcablestationmuseum.org/index.htm' target='_blank'><h4>French Cable Station Museum, Orleans, MA</h4></a>Visit this collection of original Atlantic undersea telegraph cables, instruments, and maps. Suggested by William Ricker (@n1vux)."
});
infoWindows.push(infoWindow6);
marker6 = new google.maps.Marker({
position: new google.maps.LatLng(41.7878424, -69.9874963),
options: markerOptions,
title: "French Cable Station Museum, Orleans, MA"
});
google.maps.event.addListener(marker6, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow6.open(map, marker6); });
var infoWindow7 = new google.maps.InfoWindow({ content: "<a href='http://www.museumofprinting.org/' target='_blank'><h4>The Museum of Printing, North Andover, MA</h4></a>The Museum of Printing preserves the history and tools of printing, including many typesetting and bindery machines. Suggested by William Ricker (@n1vux)."
});
infoWindows.push(infoWindow7);
marker7 = new google.maps.Marker({
position: new google.maps.LatLng(42.6848891, -71.11373979999999),
options: markerOptions,
title: "The Museum of Printing, North Andover, MA"
});
google.maps.event.addListener(marker7, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow7.open(map, marker7); });
var infoWindow8 = new google.maps.InfoWindow({ content: "<a href='http://www.nps.gov/SLBE/planyourvisit/index.htm' target='_blank'><h4>Sleeping Bear Dunes National Lakeshore, Empire, MI</h4></a>Look out onto Lake Michigan from towering dunes and 450 feet bluffs. Suggested by Kevin Bunch (@ubersaurus)."
});
infoWindows.push(infoWindow8);
marker8 = new google.maps.Marker({
position: new google.maps.LatLng(44.8840923, -86.04773089999999),
options: markerOptions,
title: "Sleeping Bear Dunes National Lakeshore, Empire, MI"
});
google.maps.event.addListener(marker8, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow8.open(map, marker8); });
var infoWindow9 = new google.maps.InfoWindow({ content: "<a href='http://www.midarkskypark.org/about/location/ ' target='_blank'><h4>Headlands Dark Sky Park, Mackinaw City, MI</h4></a>Stargaze on the straits of Mackinac. Suggested by Kevin Bunch (@ubersaurus)."
});
infoWindows.push(infoWindow9);
marker9 = new google.maps.Marker({
position: new google.maps.LatLng(45.7774987, -84.72714649999999),
options: markerOptions,
title: "Headlands Dark Sky Park, Mackinaw City, MI"
});
google.maps.event.addListener(marker9, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow9.open(map, marker9); });
var infoWindow10 = new google.maps.InfoWindow({ content: "<a href='http://www.nps.gov/piro/index.htm' target='_blank'><h4>Pictured Rocks National Lakeshore, Munising, MI</h4></a>Bowman (@MBowmanScience) suggests we head out to Pictured Rocks National Lakeshore to “go outdoors and ponder the age of the earth.”"
});
infoWindows.push(infoWindow10);
marker10 = new google.maps.Marker({
position: new google.maps.LatLng(46.5614384, -86.3213064),
options: markerOptions,
title: "Pictured Rocks National Lakeshore, Munising, MI"
});
google.maps.event.addListener(marker10, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow10.open(map, marker10); });
var infoWindow11 = new google.maps.InfoWindow({ content: "<a href='http://www.missouribotanicalgarden.org/' target='_blank'><h4>Missouri Botanical Garden, St. Louis, MO</h4></a>Step inside the rainforest within Missouri Botanical Garden’s “Climatron.” Suggested by SciFri’s own Jennifer Fenwick (@jentunefenwick)."
});
infoWindows.push(infoWindow11);
marker11 = new google.maps.Marker({
position: new google.maps.LatLng(38.6127672, -90.25937979999999),
options: markerOptions,
title: "Missouri Botanical Garden, St. Louis, MO"
});
google.maps.event.addListener(marker11, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow11.open(map, marker11); });
var infoWindow12 = new google.maps.InfoWindow({ content: "<a href='http://sasmuseum.com/' target='_blank'><h4>Strategic Air & Space Museum, Ashland, NE</h4></a>Will England (@wingland) suggests the Strategic Air & Space Museum in Nebraska, a collection that started with the aircraft of the SAC during the Cold War."
});
infoWindows.push(infoWindow12);
marker12 = new google.maps.Marker({
position: new google.maps.LatLng(41.018036, -96.31999800000001),
options: markerOptions,
title: "Strategic Air & Space Museum, Ashland, NE"
});
google.maps.event.addListener(marker12, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow12.open(map, marker12); });
var infoWindow13 = new google.maps.InfoWindow({ content: "<a href='http://www.cosmo.org/' target='_blank'><h4>Kansas Cosmosphere & Space Center, Hutchinson, KS</h4></a>The Kansas Cosmosphere & Space Center houses the largest collection of Russian space artifacts outside of Moscow. Suggested by Will England (@wingland)."
});
infoWindows.push(infoWindow13);
marker13 = new google.maps.Marker({
position: new google.maps.LatLng(38.0657986, -97.92153379999999),
options: markerOptions,
title: "Kansas Cosmosphere & Space Center, Hutchinson, KS"
});
google.maps.event.addListener(marker13, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow13.open(map, marker13); });
var infoWindow14 = new google.maps.InfoWindow({ content: "<a href='http://tpwd.texas.gov/state-parks/dinosaur-valley' target='_blank'><h4>Dinosaur Valley State Park, Glen Rose, TX</h4></a>SciFri producer Alexa Lim’s top science pitstop: “Dinosaur Valley State Park in TX. Follow the preserved dino tracks in the riverbed!”"
});
infoWindows.push(infoWindow14);
marker14 = new google.maps.Marker({
position: new google.maps.LatLng(32.2534016, -97.8096037),
options: markerOptions,
title: "Dinosaur Valley State Park, Glen Rose, TX"
});
google.maps.event.addListener(marker14, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow14.open(map, marker14); });
var infoWindow15 = new google.maps.InfoWindow({ content: "<a href='http://www.gardenofgods.com/home/index.cfm' target='_blank'><h4>Garden of the Gods, Colorado Springs, CO</h4></a>Ira says, “Loved my #SciFriRoadTrip to Garden Of The Gods in Colorado Springs. Geology: Fantastic! So were the rocks.”"
});
infoWindows.push(infoWindow15);
marker15 = new google.maps.Marker({
position: new google.maps.LatLng(38.8738411, -104.8866641),
options: markerOptions,
title: "Garden of the Gods, Colorado Springs, CO"
});
google.maps.event.addListener(marker15, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow15.open(map, marker15); });
var infoWindow16 = new google.maps.InfoWindow({ content: "<a href='http://www.lanl.gov/museum/index.php' target='_blank'><h4>Los Alamos National Laboratory, Los Alamos, NM</h4></a>@LosAlamosNatLab suggests, “How about a #SciFriRoadTrip to Los Alamos? Next week is the 70th anniversary of the #TrinityTest!”"
});
infoWindows.push(infoWindow16);
marker16 = new google.maps.Marker({
position: new google.maps.LatLng(35.8440582, -106.287162),
options: markerOptions,
title: "Los Alamos National Laboratory, Los Alamos, NM"
});
google.maps.event.addListener(marker16, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow16.open(map, marker16); });
var infoWindow17 = new google.maps.InfoWindow({ content: "<a href='http://lowell.edu/' target='_blank'><h4>Lowell Observatory, Flagstaff, AZ</h4></a>Jeffrey Moores (@JeffroBazinga) says, “The Lowell Observatory, of course! Where the search for Pluto began.”"
});
infoWindows.push(infoWindow17);
marker17 = new google.maps.Marker({
position: new google.maps.LatLng(35.2028951, -111.6646428),
options: markerOptions,
title: "Lowell Observatory, Flagstaff, AZ"
});
google.maps.event.addListener(marker17, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow17.open(map, marker17); });
var infoWindow18 = new google.maps.InfoWindow({ content: "<a href='http://mirrorlab.as.arizona.edu/tours' target='_blank'><h4>Steward Observatory Mirror Lab, The University of Arizona, Tucson, AZ</h4></a>Chris Merle (@clmerle) says, “consider the Steward Observatory Mirror Lab at the University of Arizona in Tucson. Those mirrors are ginormous.”"
});
infoWindows.push(infoWindow18);
marker18 = new google.maps.Marker({
position: new google.maps.LatLng(32.2286959, -110.9474333),
options: markerOptions,
title: "Steward Observatory Mirror Lab, The University of Arizona, Tucson, AZ"
});
google.maps.event.addListener(marker18, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow18.open(map, marker18); });
var infoWindow19 = new google.maps.InfoWindow({ content: "<a href='http://www.jpl.nasa.gov/events/tours/views/' target='_blank'><h4>NASA’s Jet Propulsion Laboratory, Pasadena, CA</h4></a>SciFri producer (@annieminoff) says, “The fake Mars field at NASA's JPL! Those rovers gotta learn to drive somewhere…”"
});
infoWindows.push(infoWindow19);
marker19 = new google.maps.Marker({
position: new google.maps.LatLng(34.1477849, -118.1445155),
options: markerOptions,
title: "NASA’s Jet Propulsion Laboratory, Pasadena, CA"
});
google.maps.event.addListener(marker19, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow19.open(map, marker19); });
var infoWindow20 = new google.maps.InfoWindow({ content: "<a href='http://www.tarpits.org/visit' target='_blank'><h4>La Brea Tar Pits & Museum, Los Angeles, CA</h4></a>SciFri video producer Luke Groskin says, “@labreatarpits (the perfect dead end.)”"
});
infoWindows.push(infoWindow20);
marker20 = new google.maps.Marker({
position: new google.maps.LatLng(34.0522342, -118.2436849),
options: markerOptions,
title: "La Brea Tar Pits & Museum, Los Angeles, CA"
});
google.maps.event.addListener(marker20, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow20.open(map, marker20); });
var infoWindow21 = new google.maps.InfoWindow({ content: "<a href='http://www.nps.gov/lavo/index.htm' target=_blank'><h4>Lassen Volcanic National Park, Mineral, CA</h4></a>Volcanologist Charles B. Connor says, “visit Lassen Volcanic National Park and absorb the spectacular geology left in the wake of the 1915 eruption -- the most recent major eruption in California. When it happens next, a lot of people will be shocked!”"
});
infoWindows.push(infoWindow21);
marker21 = new google.maps.Marker({
position: new google.maps.LatLng(40.49766, -121.4206552),
options: markerOptions,
title: "Lassen Volcanic National Park, Mineral, CA"
});
google.maps.event.addListener(marker21, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow21.open(map, marker21); });
var infoWindow22 = new google.maps.InfoWindow({ content: "<a href='http://www.empmuseum.org/' target='_blank'><h4>EMP Museum, Seattle, WA</h4></a>James Taoist (@Taoist_Skeptic) suggests Paul Allen’s Sci Fi Museum (now EMP) in Seattle. “Real movie tech from Star Trek to hydraulic cargo lifter from Alien.”"
});
infoWindows.push(infoWindow22);
marker22 = new google.maps.Marker({
position: new google.maps.LatLng(47.6214824, -122.3481245),
options: markerOptions,
title: "EMP Museum, Seattle, WA"
});
google.maps.event.addListener(marker22, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow22.open(map, marker22); });
var infoWindow23 = new google.maps.InfoWindow({ content: "<a href='http://www.seattle.gov/parks/magnuson/art.htm' target='_blank'><h4>NOAA Sound Garden, Seattle, WA</h4></a>SciFri web producer Chau Tu’s #SciFriRoadTrip pick: “The awesome sound garden at @NOAA in Seattle. h/t to @atlasobscura!”"
});
infoWindows.push(infoWindow23);
marker23 = new google.maps.Marker({
position: new google.maps.LatLng(47.6854393, -122.2499612),
options: markerOptions,
title: "NOAA Sound Garden, Seattle, WA"
});
google.maps.event.addListener(marker23, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow23.open(map, marker23); });
var infoWindow24 = new google.maps.InfoWindow({ content: "<a href='http://www.nps.gov/glac/index.htm' target='_blank'><h4>Glacier National Park, West Glacier, MT</h4></a>SciFri’s Ariel Zych (@arieloquent) says, “Glacier National Park has it all: geology, climatology, ecology, animal behavior, and WILDFLOWERS!”"
});
infoWindows.push(infoWindow24);
marker24 = new google.maps.Marker({
position: new google.maps.LatLng(48.7596128, -113.7870225),
options: markerOptions,
title: "Glacier National Park, West Glacier, MT"
});
google.maps.event.addListener(marker24, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow24.open(map, marker24); });
var infoWindow25 = new google.maps.InfoWindow({ content: "<a href='http://www4vip.inl.gov/ebr/' target='_blank'><h4>Experimental Breeder Reactor No. 1, Arco, ID</h4></a>Mrs. Devoti (@mrs_devoti) suggests, “Arco, Idaho, first city in the world to be lit by atomic power, AND near Craters of the Moon NP!”"
});
infoWindows.push(infoWindow25);
marker25 = new google.maps.Marker({
position: new google.maps.LatLng(43.6365693, -113.3002844),
options: markerOptions,
title: "Experimental Breeder Reactor No. 1, Arco, ID"
});
google.maps.event.addListener(marker25, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow25.open(map, marker25); });
var infoWindow26 = new google.maps.InfoWindow({ content: "<a href='http://www.nps.gov/crmo/index.htm' target='_blank'><h4>Craters of the Moon National Monument, Arco, ID</h4></a>Explore lava flows and cinder cones created by eruptions 15,000 to 2,000 years ago. Suggested by Mrs. Devoti (@mrs_devoti)."
});
infoWindows.push(infoWindow26);
marker26 = new google.maps.Marker({
position: new google.maps.LatLng(43.41665, -113.5166497),
options: markerOptions,
title: "Craters of the Moon National Monument, Arco, ID"
});
google.maps.event.addListener(marker26, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow26.open(map, marker26); });
var infoWindow27 = new google.maps.InfoWindow({ content: "<a href='https://www.kennedyspacecenter.com/' target='_blank'><h4>Kennedy Space Center, FL</h4></a>Visit the launch pad that all of the Space Shuttles launched from between 1981-2011. Also home to Space Shuttle Atlantis, which was the last shuttle to fly in space before the fleet was retired in 2011. Suggested by Randy Olson (@randal_olson)."
});
infoWindows.push(infoWindow27);
marker27 = new google.maps.Marker({
position: new google.maps.LatLng(28.5728722, -80.64898079999999),
options: markerOptions,
title: "Kennedy Space Center, FL"
});
google.maps.event.addListener(marker27, "mouseover", function() { for (var i = 0; i < infoWindows.length; i++) { infoWindows[i].close(); }; infoWindow27.open(map, marker27); });
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>