var map, pointarray, heatmap, heatmap2, layer; var image = 'https://maps.gstatic.com/intl/en_us/mapfiles/markers2/measle_blue.png'; var image2 = 'https://storage.googleapis.com/support-kms-prod/SNP_2752125_en_v0'; var image3 = '../assets/greendot.png'; var nanfamarkers = []; var nasmarkers = []; var fishnetmarkers = []; function processPoints(geometry, callback, thisArg) { if (geometry instanceof google.maps.LatLng) { callback.call(thisArg, geometry); } else if (geometry instanceof google.maps.Data.Point) { callback.call(thisArg, geometry.get()); } else { geometry.getArray().forEach(function (g) { processPoints(g, callback, thisArg); }); } } function initialize() { var mapOptions = { zoom: 4, center: new google.maps.LatLng(35.4822, -97.5350), mapTypeId: google.maps.MapTypeId.ROADMAP, gestureHandling: 'greedy' }; var bounds = new google.maps.LatLngBounds(); var infowindow = new google.maps.InfoWindow(); map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3010102.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3010103.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3010104.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3020201.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3020203.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3030002.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3030003.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3030004.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3040101.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3040103.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3040104.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3040105.kml.geojson'); map.data.loadGeoJson('http://fishmap.org/assets/json/HUC8/3050101.kml.geojson'); map.data.setStyle( function(feature){ var featurecountry = feature.getProperty('name'); if (featurecountry.trim() == '3010103' ) { return/** @type {google.maps.Data.StyleOptions} */ { fillColor : 'red' }; } }); var myLatLng = new google.maps.LatLng(35.8916667,-79.0588889); var fishNet2marker1 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker1.position); fishnetmarkers.push(fishNet2marker1); var myLatLng = new google.maps.LatLng(35.6788889,-79.29); var fishNet2marker2 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker2.position); fishnetmarkers.push(fishNet2marker2); var zz2 = new google.maps.InfoWindow({content: "Date Collected: 04/29/1979
Location: 35.6788889, -79.29
Collector: W.C. Dickinson, C.K. Dodd Jr., D.A. Etnier"}); google.maps.event.addListener(fishNet2marker2, "click", function (e) { zz2.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4569444,-80.7113889); var fishNet2marker3 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker3.position); fishnetmarkers.push(fishNet2marker3); var zz3 = new google.maps.InfoWindow({content: "Date Collected: 05/09/1988
Location: 35.4569444, -80.7113889
Collector: E.F.,M.A.,&P.M. Menhinick"}); google.maps.event.addListener(fishNet2marker3, "click", function (e) { zz3.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4302778,-80.6922222); var fishNet2marker4 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker4.position); fishnetmarkers.push(fishNet2marker4); var zz4 = new google.maps.InfoWindow({content: "Date Collected: 05/12/1988
Location: 35.4302778, -80.6922222
Collector: E.F. Menhinick, et al."}); google.maps.event.addListener(fishNet2marker4, "click", function (e) { zz4.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9258333,-79.0555556); var fishNet2marker5 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker5.position); fishnetmarkers.push(fishNet2marker5); var zz5 = new google.maps.InfoWindow({content: "Date Collected: 09/03/1986
Location: 35.9258333, -79.0555556
Collector: R.E. Noffsinger, C. Wilson, et al."}); google.maps.event.addListener(fishNet2marker5, "click", function (e) { zz5.open(map, this); }); var myLatLng = new google.maps.LatLng(35.95982,-78.678523); var fishNet2marker6 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker6.position); fishnetmarkers.push(fishNet2marker6); var zz6 = new google.maps.InfoWindow({content: "Date Collected: 05/16/1976
Location: 35.95982, -78.678523
Collector: S.P. Platania and Lee"}); google.maps.event.addListener(fishNet2marker6, "click", function (e) { zz6.open(map, this); }); var myLatLng = new google.maps.LatLng(35.977158,-78.574057); var fishNet2marker7 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker7.position); fishnetmarkers.push(fishNet2marker7); var zz7 = new google.maps.InfoWindow({content: "Date Collected: 10/05/1978
Location: 35.977158, -78.574057
Collector: S.P. Platania and Shute"}); google.maps.event.addListener(fishNet2marker7, "click", function (e) { zz7.open(map, this); }); var myLatLng = new google.maps.LatLng(35.958647,-78.644502); var fishNet2marker8 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker8.position); fishnetmarkers.push(fishNet2marker8); var zz8 = new google.maps.InfoWindow({content: "Date Collected: 03/20/1979
Location: 35.958647, -78.644502
Collector: S.P. Platania, Lee, Allen and Ballard"}); google.maps.event.addListener(fishNet2marker8, "click", function (e) { zz8.open(map, this); }); var myLatLng = new google.maps.LatLng(36.5533,-79.0169); var fishNet2marker9 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker9.position); fishnetmarkers.push(fishNet2marker9); var zz9 = new google.maps.InfoWindow({content: "Date Collected: 04/25/1994
Location: 36.5533, -79.0169
Collector: "}); google.maps.event.addListener(fishNet2marker9, "click", function (e) { zz9.open(map, this); }); var myLatLng = new google.maps.LatLng(36.6953,-78.9847); var fishNet2marker10 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker10.position); fishnetmarkers.push(fishNet2marker10); var zz10 = new google.maps.InfoWindow({content: "Date Collected: 08/29/1997
Location: 36.6953, -78.9847
Collector: "}); google.maps.event.addListener(fishNet2marker10, "click", function (e) { zz10.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1089,-79.1494); var fishNet2marker11 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker11.position); fishnetmarkers.push(fishNet2marker11); var zz11 = new google.maps.InfoWindow({content: "Date Collected: 07/21/1997
Location: 36.1089, -79.1494
Collector: "}); google.maps.event.addListener(fishNet2marker11, "click", function (e) { zz11.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3352,-78.7844); var fishNet2marker12 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker12.position); fishnetmarkers.push(fishNet2marker12); var zz12 = new google.maps.InfoWindow({content: "Date Collected: 12/11/1923
Location: 35.3352, -78.7844
Collector: "}); google.maps.event.addListener(fishNet2marker12, "click", function (e) { zz12.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1676,-79.144); var fishNet2marker13 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker13.position); fishnetmarkers.push(fishNet2marker13); var zz13 = new google.maps.InfoWindow({content: "Date Collected: 08/16/1961
Location: 36.1676, -79.144
Collector: "}); google.maps.event.addListener(fishNet2marker13, "click", function (e) { zz13.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9602,-78.6765); var fishNet2marker14 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker14.position); fishnetmarkers.push(fishNet2marker14); var zz14 = new google.maps.InfoWindow({content: "Date Collected: 07/13/1961
Location: 35.9602, -78.6765
Collector: "}); google.maps.event.addListener(fishNet2marker14, "click", function (e) { zz14.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1022,-79.1433); var fishNet2marker15 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker15.position); fishnetmarkers.push(fishNet2marker15); var zz15 = new google.maps.InfoWindow({content: "Date Collected: 10/27/1956
Location: 36.1022, -79.1433
Collector: "}); google.maps.event.addListener(fishNet2marker15, "click", function (e) { zz15.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4801,-81.0676); var fishNet2marker16 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker16.position); fishnetmarkers.push(fishNet2marker16); var zz16 = new google.maps.InfoWindow({content: "Date Collected: 07/03/1963
Location: 35.4801, -81.0676
Collector: "}); google.maps.event.addListener(fishNet2marker16, "click", function (e) { zz16.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2047,-81.0106); var fishNet2marker17 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker17.position); fishnetmarkers.push(fishNet2marker17); var zz17 = new google.maps.InfoWindow({content: "Date Collected: 07/24/1961
Location: 36.2047, -81.0106
Collector: "}); google.maps.event.addListener(fishNet2marker17, "click", function (e) { zz17.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0309,-78.5956); var fishNet2marker18 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker18.position); fishnetmarkers.push(fishNet2marker18); var zz18 = new google.maps.InfoWindow({content: "Date Collected: 07/17/1959
Location: 36.0309, -78.5956
Collector: "}); google.maps.event.addListener(fishNet2marker18, "click", function (e) { zz18.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5437,-78.9089); var fishNet2marker19 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker19.position); fishnetmarkers.push(fishNet2marker19); var zz19 = new google.maps.InfoWindow({content: "Date Collected: 08/21/1962
Location: 35.5437, -78.9089
Collector: "}); google.maps.event.addListener(fishNet2marker19, "click", function (e) { zz19.open(map, this); }); var myLatLng = new google.maps.LatLng(35.989,-79.4967); var fishNet2marker20 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker20.position); fishnetmarkers.push(fishNet2marker20); var zz20 = new google.maps.InfoWindow({content: "Date Collected: 07/11/1963
Location: 35.989, -79.4967
Collector: "}); google.maps.event.addListener(fishNet2marker20, "click", function (e) { zz20.open(map, this); }); var myLatLng = new google.maps.LatLng(36.5165,-79.0281); var fishNet2marker21 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker21.position); fishnetmarkers.push(fishNet2marker21); var zz21 = new google.maps.InfoWindow({content: "Date Collected: 06/19/1964
Location: 36.5165, -79.0281
Collector: "}); google.maps.event.addListener(fishNet2marker21, "click", function (e) { zz21.open(map, this); }); var myLatLng = new google.maps.LatLng(36.4467,-79.2532); var fishNet2marker22 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker22.position); fishnetmarkers.push(fishNet2marker22); var zz22 = new google.maps.InfoWindow({content: "Date Collected: 06/25/1964
Location: 36.4467, -79.2532
Collector: "}); google.maps.event.addListener(fishNet2marker22, "click", function (e) { zz22.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9597,-78.9815); var fishNet2marker23 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker23.position); fishnetmarkers.push(fishNet2marker23); var zz23 = new google.maps.InfoWindow({content: "Date Collected: 07/01/1963
Location: 35.9597, -78.9815
Collector: "}); google.maps.event.addListener(fishNet2marker23, "click", function (e) { zz23.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1739,-79.3023); var fishNet2marker24 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker24.position); fishnetmarkers.push(fishNet2marker24); var zz24 = new google.maps.InfoWindow({content: "Date Collected: 07/18/1963
Location: 36.1739, -79.3023
Collector: "}); google.maps.event.addListener(fishNet2marker24, "click", function (e) { zz24.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8612,-79.0099); var fishNet2marker25 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker25.position); fishnetmarkers.push(fishNet2marker25); var zz25 = new google.maps.InfoWindow({content: "Date Collected: 06/20/1962
Location: 35.8612, -79.0099
Collector: "}); google.maps.event.addListener(fishNet2marker25, "click", function (e) { zz25.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5394,-78.9195); var fishNet2marker26 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker26.position); fishnetmarkers.push(fishNet2marker26); var zz26 = new google.maps.InfoWindow({content: "Date Collected: 06/28/1966
Location: 35.5394, -78.9195
Collector: "}); google.maps.event.addListener(fishNet2marker26, "click", function (e) { zz26.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7027,-79.092); var fishNet2marker27 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker27.position); fishnetmarkers.push(fishNet2marker27); var zz27 = new google.maps.InfoWindow({content: "Date Collected: 06/29/1966
Location: 35.7027, -79.092
Collector: "}); google.maps.event.addListener(fishNet2marker27, "click", function (e) { zz27.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7027,-79.092); var fishNet2marker28 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker28.position); fishnetmarkers.push(fishNet2marker28); var zz28 = new google.maps.InfoWindow({content: "Date Collected: 07/09/1966
Location: 35.7027, -79.092
Collector: "}); google.maps.event.addListener(fishNet2marker28, "click", function (e) { zz28.open(map, this); }); var myLatLng = new google.maps.LatLng(36.4466,-79.2531); var fishNet2marker29 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker29.position); fishnetmarkers.push(fishNet2marker29); var zz29 = new google.maps.InfoWindow({content: "Date Collected: 07/23/1966
Location: 36.4466, -79.2531
Collector: "}); google.maps.event.addListener(fishNet2marker29, "click", function (e) { zz29.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0721,-78.8632); var fishNet2marker30 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker30.position); fishnetmarkers.push(fishNet2marker30); var zz30 = new google.maps.InfoWindow({content: "Date Collected: 07/23/1966
Location: 36.0721, -78.8632
Collector: "}); google.maps.event.addListener(fishNet2marker30, "click", function (e) { zz30.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9807,-78.7383); var fishNet2marker31 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker31.position); fishnetmarkers.push(fishNet2marker31); var zz31 = new google.maps.InfoWindow({content: "Date Collected: 07/06/1961
Location: 35.9807, -78.7383
Collector: "}); google.maps.event.addListener(fishNet2marker31, "click", function (e) { zz31.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6391,-79.2671); var fishNet2marker32 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker32.position); fishnetmarkers.push(fishNet2marker32); var zz32 = new google.maps.InfoWindow({content: "Date Collected: 03/30/1967
Location: 35.6391, -79.2671
Collector: "}); google.maps.event.addListener(fishNet2marker32, "click", function (e) { zz32.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7027,-79.092); var fishNet2marker33 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker33.position); fishnetmarkers.push(fishNet2marker33); var zz33 = new google.maps.InfoWindow({content: "Date Collected: 05/30/1968
Location: 35.7027, -79.092
Collector: "}); google.maps.event.addListener(fishNet2marker33, "click", function (e) { zz33.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9598,-78.6792); var fishNet2marker34 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker34.position); fishnetmarkers.push(fishNet2marker34); var zz34 = new google.maps.InfoWindow({content: "Date Collected: 06/01/1968
Location: 35.9598, -78.6792
Collector: "}); google.maps.event.addListener(fishNet2marker34, "click", function (e) { zz34.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6786,-79.2907); var fishNet2marker35 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker35.position); fishnetmarkers.push(fishNet2marker35); var zz35 = new google.maps.InfoWindow({content: "Date Collected: 09/29/1968
Location: 35.6786, -79.2907
Collector: "}); google.maps.event.addListener(fishNet2marker35, "click", function (e) { zz35.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9601,-78.6793); var fishNet2marker36 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker36.position); fishnetmarkers.push(fishNet2marker36); var zz36 = new google.maps.InfoWindow({content: "Date Collected: 05/13/1969
Location: 35.9601, -78.6793
Collector: "}); google.maps.event.addListener(fishNet2marker36, "click", function (e) { zz36.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6348,-79.2124); var fishNet2marker37 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker37.position); fishnetmarkers.push(fishNet2marker37); var zz37 = new google.maps.InfoWindow({content: "Date Collected: 06/09/1971
Location: 35.6348, -79.2124
Collector: "}); google.maps.event.addListener(fishNet2marker37, "click", function (e) { zz37.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5597,-78.9733); var fishNet2marker38 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker38.position); fishnetmarkers.push(fishNet2marker38); var zz38 = new google.maps.InfoWindow({content: "Date Collected: 05/31/1973
Location: 35.5597, -78.9733
Collector: "}); google.maps.event.addListener(fishNet2marker38, "click", function (e) { zz38.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0186,-78.5578); var fishNet2marker39 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker39.position); fishnetmarkers.push(fishNet2marker39); var zz39 = new google.maps.InfoWindow({content: "Date Collected: 02/21/1976
Location: 36.0186, -78.5578
Collector: "}); google.maps.event.addListener(fishNet2marker39, "click", function (e) { zz39.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7335,-79.982); var fishNet2marker40 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker40.position); fishnetmarkers.push(fishNet2marker40); var zz40 = new google.maps.InfoWindow({content: "Date Collected: 05/25/1978
Location: 35.7335, -79.982
Collector: "}); google.maps.event.addListener(fishNet2marker40, "click", function (e) { zz40.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1236,-79.1551); var fishNet2marker41 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker41.position); fishnetmarkers.push(fishNet2marker41); var zz41 = new google.maps.InfoWindow({content: "Date Collected: 10/21/1977
Location: 36.1236, -79.1551
Collector: "}); google.maps.event.addListener(fishNet2marker41, "click", function (e) { zz41.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5482,-78.9892); var fishNet2marker42 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker42.position); fishnetmarkers.push(fishNet2marker42); var zz42 = new google.maps.InfoWindow({content: "Date Collected: 09/18/1980
Location: 35.5482, -78.9892
Collector: "}); google.maps.event.addListener(fishNet2marker42, "click", function (e) { zz42.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6795,-79.2915); var fishNet2marker43 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker43.position); fishnetmarkers.push(fishNet2marker43); var zz43 = new google.maps.InfoWindow({content: "Date Collected: 10/08/1980
Location: 35.6795, -79.2915
Collector: "}); google.maps.event.addListener(fishNet2marker43, "click", function (e) { zz43.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8963,-80.1299); var fishNet2marker44 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker44.position); fishnetmarkers.push(fishNet2marker44); var zz44 = new google.maps.InfoWindow({content: "Date Collected: 10/03/1983
Location: 35.8963, -80.1299
Collector: "}); google.maps.event.addListener(fishNet2marker44, "click", function (e) { zz44.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6791,-79.2894); var fishNet2marker45 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker45.position); fishnetmarkers.push(fishNet2marker45); var zz45 = new google.maps.InfoWindow({content: "Date Collected: 09/06/1984
Location: 35.6791, -79.2894
Collector: "}); google.maps.event.addListener(fishNet2marker45, "click", function (e) { zz45.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6359,-79.215); var fishNet2marker46 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker46.position); fishnetmarkers.push(fishNet2marker46); var zz46 = new google.maps.InfoWindow({content: "Date Collected: 09/06/1984
Location: 35.6359, -79.215
Collector: "}); google.maps.event.addListener(fishNet2marker46, "click", function (e) { zz46.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5005,-79.5813); var fishNet2marker47 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker47.position); fishnetmarkers.push(fishNet2marker47); var zz47 = new google.maps.InfoWindow({content: "Date Collected: 09/05/1985
Location: 35.5005, -79.5813
Collector: "}); google.maps.event.addListener(fishNet2marker47, "click", function (e) { zz47.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9316,-78.5586); var fishNet2marker48 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker48.position); fishnetmarkers.push(fishNet2marker48); var zz48 = new google.maps.InfoWindow({content: "Date Collected: 09/12/1985
Location: 35.9316, -78.5586
Collector: "}); google.maps.event.addListener(fishNet2marker48, "click", function (e) { zz48.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9322,-78.5589); var fishNet2marker49 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker49.position); fishnetmarkers.push(fishNet2marker49); var zz49 = new google.maps.InfoWindow({content: "Date Collected: 09/12/1985
Location: 35.9322, -78.5589
Collector: "}); google.maps.event.addListener(fishNet2marker49, "click", function (e) { zz49.open(map, this); }); var myLatLng = new google.maps.LatLng(36.027,-78.6012); var fishNet2marker50 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker50.position); fishnetmarkers.push(fishNet2marker50); var zz50 = new google.maps.InfoWindow({content: "Date Collected: 02/05/1986
Location: 36.027, -78.6012
Collector: "}); google.maps.event.addListener(fishNet2marker50, "click", function (e) { zz50.open(map, this); }); var myLatLng = new google.maps.LatLng(36.123,-79.1549); var fishNet2marker51 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker51.position); fishnetmarkers.push(fishNet2marker51); var zz51 = new google.maps.InfoWindow({content: "Date Collected: 08/02/1961
Location: 36.123, -79.1549
Collector: "}); google.maps.event.addListener(fishNet2marker51, "click", function (e) { zz51.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4571,-80.7745); var fishNet2marker52 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker52.position); fishnetmarkers.push(fishNet2marker52); var zz52 = new google.maps.InfoWindow({content: "Date Collected: 05/13/1986
Location: 35.4571, -80.7745
Collector: "}); google.maps.event.addListener(fishNet2marker52, "click", function (e) { zz52.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1577,-78.7744); var fishNet2marker53 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker53.position); fishnetmarkers.push(fishNet2marker53); var zz53 = new google.maps.InfoWindow({content: "Date Collected: 04/30/1986
Location: 36.1577, -78.7744
Collector: "}); google.maps.event.addListener(fishNet2marker53, "click", function (e) { zz53.open(map, this); }); var myLatLng = new google.maps.LatLng(35.2483,-80.6919); var fishNet2marker54 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker54.position); fishnetmarkers.push(fishNet2marker54); var zz54 = new google.maps.InfoWindow({content: "Date Collected: 07/06/1986
Location: 35.2483, -80.6919
Collector: "}); google.maps.event.addListener(fishNet2marker54, "click", function (e) { zz54.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6594,-79.2406); var fishNet2marker55 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker55.position); fishnetmarkers.push(fishNet2marker55); var zz55 = new google.maps.InfoWindow({content: "Date Collected: 05/25/1984
Location: 35.6594, -79.2406
Collector: "}); google.maps.event.addListener(fishNet2marker55, "click", function (e) { zz55.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9273,-79.0302); var fishNet2marker56 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker56.position); fishnetmarkers.push(fishNet2marker56); var zz56 = new google.maps.InfoWindow({content: "Date Collected: 09/03/1986
Location: 35.9273, -79.0302
Collector: "}); google.maps.event.addListener(fishNet2marker56, "click", function (e) { zz56.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9274,-79.0201); var fishNet2marker57 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker57.position); fishnetmarkers.push(fishNet2marker57); var zz57 = new google.maps.InfoWindow({content: "Date Collected: 09/03/1986
Location: 35.9274, -79.0201
Collector: "}); google.maps.event.addListener(fishNet2marker57, "click", function (e) { zz57.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9196,-79.0163); var fishNet2marker58 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker58.position); fishnetmarkers.push(fishNet2marker58); var zz58 = new google.maps.InfoWindow({content: "Date Collected: 09/03/1986
Location: 35.9196, -79.0163
Collector: "}); google.maps.event.addListener(fishNet2marker58, "click", function (e) { zz58.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5597,-78.9733); var fishNet2marker59 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker59.position); fishnetmarkers.push(fishNet2marker59); var zz59 = new google.maps.InfoWindow({content: "Date Collected: 06/10/1984
Location: 35.5597, -78.9733
Collector: "}); google.maps.event.addListener(fishNet2marker59, "click", function (e) { zz59.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5253,-80.7823); var fishNet2marker60 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker60.position); fishnetmarkers.push(fishNet2marker60); var zz60 = new google.maps.InfoWindow({content: "Date Collected: 09/24/1986
Location: 35.5253, -80.7823
Collector: "}); google.maps.event.addListener(fishNet2marker60, "click", function (e) { zz60.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5236,-80.7809); var fishNet2marker61 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker61.position); fishnetmarkers.push(fishNet2marker61); var zz61 = new google.maps.InfoWindow({content: "Date Collected: 09/24/1986
Location: 35.5236, -80.7809
Collector: "}); google.maps.event.addListener(fishNet2marker61, "click", function (e) { zz61.open(map, this); }); var myLatLng = new google.maps.LatLng(35.324,-80.5156); var fishNet2marker62 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker62.position); fishnetmarkers.push(fishNet2marker62); var zz62 = new google.maps.InfoWindow({content: "Date Collected: 10/08/1986
Location: 35.324, -80.5156
Collector: "}); google.maps.event.addListener(fishNet2marker62, "click", function (e) { zz62.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3244,-80.5606); var fishNet2marker63 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker63.position); fishnetmarkers.push(fishNet2marker63); var zz63 = new google.maps.InfoWindow({content: "Date Collected: 10/09/1986
Location: 35.3244, -80.5606
Collector: "}); google.maps.event.addListener(fishNet2marker63, "click", function (e) { zz63.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6594,-79.2393); var fishNet2marker64 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker64.position); fishnetmarkers.push(fishNet2marker64); var zz64 = new google.maps.InfoWindow({content: "Date Collected: 09/08/1984
Location: 35.6594, -79.2393
Collector: "}); google.maps.event.addListener(fishNet2marker64, "click", function (e) { zz64.open(map, this); }); var myLatLng = new google.maps.LatLng(35.639,-79.267); var fishNet2marker65 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker65.position); fishnetmarkers.push(fishNet2marker65); var zz65 = new google.maps.InfoWindow({content: "Date Collected: 09/08/1984
Location: 35.639, -79.267
Collector: "}); google.maps.event.addListener(fishNet2marker65, "click", function (e) { zz65.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6195,-79.0945); var fishNet2marker66 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker66.position); fishnetmarkers.push(fishNet2marker66); var zz66 = new google.maps.InfoWindow({content: "Date Collected: 09/21/1984
Location: 35.6195, -79.0945
Collector: "}); google.maps.event.addListener(fishNet2marker66, "click", function (e) { zz66.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4565,-78.9703); var fishNet2marker67 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker67.position); fishnetmarkers.push(fishNet2marker67); var zz67 = new google.maps.InfoWindow({content: "Date Collected: 09/28/1984
Location: 35.4565, -78.9703
Collector: "}); google.maps.event.addListener(fishNet2marker67, "click", function (e) { zz67.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6218,-79.1881); var fishNet2marker68 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker68.position); fishnetmarkers.push(fishNet2marker68); var zz68 = new google.maps.InfoWindow({content: "Date Collected: 09/30/1984
Location: 35.6218, -79.1881
Collector: "}); google.maps.event.addListener(fishNet2marker68, "click", function (e) { zz68.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6229,-79.1692); var fishNet2marker69 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker69.position); fishnetmarkers.push(fishNet2marker69); var zz69 = new google.maps.InfoWindow({content: "Date Collected: 10/05/1984
Location: 35.6229, -79.1692
Collector: "}); google.maps.event.addListener(fishNet2marker69, "click", function (e) { zz69.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6196,-79.0943); var fishNet2marker70 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker70.position); fishnetmarkers.push(fishNet2marker70); var zz70 = new google.maps.InfoWindow({content: "Date Collected: 10/11/1984
Location: 35.6196, -79.0943
Collector: "}); google.maps.event.addListener(fishNet2marker70, "click", function (e) { zz70.open(map, this); }); var myLatLng = new google.maps.LatLng(35.624,-79.1995); var fishNet2marker71 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker71.position); fishnetmarkers.push(fishNet2marker71); var zz71 = new google.maps.InfoWindow({content: "Date Collected: 10/12/1984
Location: 35.624, -79.1995
Collector: "}); google.maps.event.addListener(fishNet2marker71, "click", function (e) { zz71.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6345,-79.2127); var fishNet2marker72 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker72.position); fishnetmarkers.push(fishNet2marker72); var zz72 = new google.maps.InfoWindow({content: "Date Collected: 10/12/1984
Location: 35.6345, -79.2127
Collector: "}); google.maps.event.addListener(fishNet2marker72, "click", function (e) { zz72.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6345,-79.2127); var fishNet2marker73 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker73.position); fishnetmarkers.push(fishNet2marker73); var zz73 = new google.maps.InfoWindow({content: "Date Collected: 10/12/1984
Location: 35.6345, -79.2127
Collector: "}); google.maps.event.addListener(fishNet2marker73, "click", function (e) { zz73.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9878,-80.3159); var fishNet2marker74 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker74.position); fishnetmarkers.push(fishNet2marker74); var zz74 = new google.maps.InfoWindow({content: "Date Collected: 10/23/1986
Location: 35.9878, -80.3159
Collector: "}); google.maps.event.addListener(fishNet2marker74, "click", function (e) { zz74.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3477,-80.5479); var fishNet2marker75 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker75.position); fishnetmarkers.push(fishNet2marker75); var zz75 = new google.maps.InfoWindow({content: "Date Collected: 11/29/1986
Location: 35.3477, -80.5479
Collector: "}); google.maps.event.addListener(fishNet2marker75, "click", function (e) { zz75.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4004,-80.4802); var fishNet2marker76 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker76.position); fishnetmarkers.push(fishNet2marker76); var zz76 = new google.maps.InfoWindow({content: "Date Collected: 11/29/1986
Location: 35.4004, -80.4802
Collector: "}); google.maps.event.addListener(fishNet2marker76, "click", function (e) { zz76.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5393,-78.9903); var fishNet2marker77 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker77.position); fishnetmarkers.push(fishNet2marker77); var zz77 = new google.maps.InfoWindow({content: "Date Collected: 11/11/1984
Location: 35.5393, -78.9903
Collector: "}); google.maps.event.addListener(fishNet2marker77, "click", function (e) { zz77.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6178,-79.1495); var fishNet2marker78 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker78.position); fishnetmarkers.push(fishNet2marker78); var zz78 = new google.maps.InfoWindow({content: "Date Collected: 11/15/1984
Location: 35.6178, -79.1495
Collector: "}); google.maps.event.addListener(fishNet2marker78, "click", function (e) { zz78.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6594,-79.2394); var fishNet2marker79 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker79.position); fishnetmarkers.push(fishNet2marker79); var zz79 = new google.maps.InfoWindow({content: "Date Collected: 11/20/1984
Location: 35.6594, -79.2394
Collector: "}); google.maps.event.addListener(fishNet2marker79, "click", function (e) { zz79.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5403,-78.9899); var fishNet2marker80 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker80.position); fishnetmarkers.push(fishNet2marker80); var zz80 = new google.maps.InfoWindow({content: "Date Collected: 12/11/1984
Location: 35.5403, -78.9899
Collector: "}); google.maps.event.addListener(fishNet2marker80, "click", function (e) { zz80.open(map, this); }); var myLatLng = new google.maps.LatLng(35.524,-79.6186); var fishNet2marker81 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker81.position); fishnetmarkers.push(fishNet2marker81); var zz81 = new google.maps.InfoWindow({content: "Date Collected: 11/13/1985
Location: 35.524, -79.6186
Collector: "}); google.maps.event.addListener(fishNet2marker81, "click", function (e) { zz81.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0269,-78.6013); var fishNet2marker82 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker82.position); fishnetmarkers.push(fishNet2marker82); var zz82 = new google.maps.InfoWindow({content: "Date Collected: 07/07/1988
Location: 36.0269, -78.6013
Collector: "}); google.maps.event.addListener(fishNet2marker82, "click", function (e) { zz82.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4019,-79.6602); var fishNet2marker83 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker83.position); fishnetmarkers.push(fishNet2marker83); var zz83 = new google.maps.InfoWindow({content: "Date Collected: 09/07/1988
Location: 35.4019, -79.6602
Collector: "}); google.maps.event.addListener(fishNet2marker83, "click", function (e) { zz83.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4408,-79.5888); var fishNet2marker84 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker84.position); fishnetmarkers.push(fishNet2marker84); var zz84 = new google.maps.InfoWindow({content: "Date Collected: 09/07/1988
Location: 35.4408, -79.5888
Collector: "}); google.maps.event.addListener(fishNet2marker84, "click", function (e) { zz84.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3811,-80.5733); var fishNet2marker85 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker85.position); fishnetmarkers.push(fishNet2marker85); var zz85 = new google.maps.InfoWindow({content: "Date Collected: 11/06/1985
Location: 35.3811, -80.5733
Collector: "}); google.maps.event.addListener(fishNet2marker85, "click", function (e) { zz85.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9637,-79.8896); var fishNet2marker86 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker86.position); fishnetmarkers.push(fishNet2marker86); var zz86 = new google.maps.InfoWindow({content: "Date Collected: 02/09/1988
Location: 35.9637, -79.8896
Collector: "}); google.maps.event.addListener(fishNet2marker86, "click", function (e) { zz86.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6352,-79.2109); var fishNet2marker87 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker87.position); fishnetmarkers.push(fishNet2marker87); var zz87 = new google.maps.InfoWindow({content: "Date Collected: 12/23/1984
Location: 35.6352, -79.2109
Collector: "}); google.maps.event.addListener(fishNet2marker87, "click", function (e) { zz87.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9734,-79.9187); var fishNet2marker88 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker88.position); fishnetmarkers.push(fishNet2marker88); var zz88 = new google.maps.InfoWindow({content: "Date Collected: 09/21/1985
Location: 35.9734, -79.9187
Collector: "}); google.maps.event.addListener(fishNet2marker88, "click", function (e) { zz88.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8943,-79.8394); var fishNet2marker89 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker89.position); fishnetmarkers.push(fishNet2marker89); var zz89 = new google.maps.InfoWindow({content: "Date Collected: 09/21/1985
Location: 35.8943, -79.8394
Collector: "}); google.maps.event.addListener(fishNet2marker89, "click", function (e) { zz89.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5199,-79.3483); var fishNet2marker90 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker90.position); fishnetmarkers.push(fishNet2marker90); var zz90 = new google.maps.InfoWindow({content: "Date Collected: 10/12/1985
Location: 35.5199, -79.3483
Collector: "}); google.maps.event.addListener(fishNet2marker90, "click", function (e) { zz90.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5895,-79.6063); var fishNet2marker91 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker91.position); fishnetmarkers.push(fishNet2marker91); var zz91 = new google.maps.InfoWindow({content: "Date Collected: 12/12/1985
Location: 35.5895, -79.6063
Collector: "}); google.maps.event.addListener(fishNet2marker91, "click", function (e) { zz91.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6218,-79.1883); var fishNet2marker92 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker92.position); fishnetmarkers.push(fishNet2marker92); var zz92 = new google.maps.InfoWindow({content: "Date Collected: 10/25/1986
Location: 35.6218, -79.1883
Collector: "}); google.maps.event.addListener(fishNet2marker92, "click", function (e) { zz92.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9794,-79.0015); var fishNet2marker93 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker93.position); fishnetmarkers.push(fishNet2marker93); var zz93 = new google.maps.InfoWindow({content: "Date Collected: 06/28/1987
Location: 35.9794, -79.0015
Collector: "}); google.maps.event.addListener(fishNet2marker93, "click", function (e) { zz93.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8765,-79.8838); var fishNet2marker94 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker94.position); fishnetmarkers.push(fishNet2marker94); var zz94 = new google.maps.InfoWindow({content: "Date Collected: 08/22/1992
Location: 35.8765, -79.8838
Collector: "}); google.maps.event.addListener(fishNet2marker94, "click", function (e) { zz94.open(map, this); }); var myLatLng = new google.maps.LatLng(35.876,-79.8783); var fishNet2marker95 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker95.position); fishnetmarkers.push(fishNet2marker95); var zz95 = new google.maps.InfoWindow({content: "Date Collected: 08/22/1992
Location: 35.876, -79.8783
Collector: "}); google.maps.event.addListener(fishNet2marker95, "click", function (e) { zz95.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8623,-79.8564); var fishNet2marker96 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker96.position); fishnetmarkers.push(fishNet2marker96); var zz96 = new google.maps.InfoWindow({content: "Date Collected: 08/23/1992
Location: 35.8623, -79.8564
Collector: "}); google.maps.event.addListener(fishNet2marker96, "click", function (e) { zz96.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9502,-79.8693); var fishNet2marker97 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker97.position); fishnetmarkers.push(fishNet2marker97); var zz97 = new google.maps.InfoWindow({content: "Date Collected: 08/23/1992
Location: 35.9502, -79.8693
Collector: "}); google.maps.event.addListener(fishNet2marker97, "click", function (e) { zz97.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9345,-79.8698); var fishNet2marker98 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker98.position); fishnetmarkers.push(fishNet2marker98); var zz98 = new google.maps.InfoWindow({content: "Date Collected: 08/23/1992
Location: 35.9345, -79.8698
Collector: "}); google.maps.event.addListener(fishNet2marker98, "click", function (e) { zz98.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9406,-79.9021); var fishNet2marker99 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker99.position); fishnetmarkers.push(fishNet2marker99); var zz99 = new google.maps.InfoWindow({content: "Date Collected: 09/13/1992
Location: 35.9406, -79.9021
Collector: "}); google.maps.event.addListener(fishNet2marker99, "click", function (e) { zz99.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8838,-79.8948); var fishNet2marker100 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker100.position); fishnetmarkers.push(fishNet2marker100); var zz100 = new google.maps.InfoWindow({content: "Date Collected: 08/22/1992
Location: 35.8838, -79.8948
Collector: "}); google.maps.event.addListener(fishNet2marker100, "click", function (e) { zz100.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8943,-79.8394); var fishNet2marker101 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker101.position); fishnetmarkers.push(fishNet2marker101); var zz101 = new google.maps.InfoWindow({content: "Date Collected: 09/12/1992
Location: 35.8943, -79.8394
Collector: "}); google.maps.event.addListener(fishNet2marker101, "click", function (e) { zz101.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9012,-79.8406); var fishNet2marker102 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker102.position); fishnetmarkers.push(fishNet2marker102); var zz102 = new google.maps.InfoWindow({content: "Date Collected: 09/12/1992
Location: 35.9012, -79.8406
Collector: "}); google.maps.event.addListener(fishNet2marker102, "click", function (e) { zz102.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8465,-79.8103); var fishNet2marker103 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker103.position); fishnetmarkers.push(fishNet2marker103); var zz103 = new google.maps.InfoWindow({content: "Date Collected: 09/12/1992
Location: 35.8465, -79.8103
Collector: "}); google.maps.event.addListener(fishNet2marker103, "click", function (e) { zz103.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9215,-79.8553); var fishNet2marker104 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker104.position); fishnetmarkers.push(fishNet2marker104); var zz104 = new google.maps.InfoWindow({content: "Date Collected: 09/13/1992
Location: 35.9215, -79.8553
Collector: "}); google.maps.event.addListener(fishNet2marker104, "click", function (e) { zz104.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9188,-79.8657); var fishNet2marker105 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker105.position); fishnetmarkers.push(fishNet2marker105); var zz105 = new google.maps.InfoWindow({content: "Date Collected: 09/13/1992
Location: 35.9188, -79.8657
Collector: "}); google.maps.event.addListener(fishNet2marker105, "click", function (e) { zz105.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9533,-79.8862); var fishNet2marker106 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker106.position); fishnetmarkers.push(fishNet2marker106); var zz106 = new google.maps.InfoWindow({content: "Date Collected: 09/13/1992
Location: 35.9533, -79.8862
Collector: "}); google.maps.event.addListener(fishNet2marker106, "click", function (e) { zz106.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9414,-79.9314); var fishNet2marker107 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker107.position); fishnetmarkers.push(fishNet2marker107); var zz107 = new google.maps.InfoWindow({content: "Date Collected: 09/27/1992
Location: 35.9414, -79.9314
Collector: "}); google.maps.event.addListener(fishNet2marker107, "click", function (e) { zz107.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9732,-79.9187); var fishNet2marker108 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker108.position); fishnetmarkers.push(fishNet2marker108); var zz108 = new google.maps.InfoWindow({content: "Date Collected: 09/27/1992
Location: 35.9732, -79.9187
Collector: "}); google.maps.event.addListener(fishNet2marker108, "click", function (e) { zz108.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9045,-79.8539); var fishNet2marker109 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker109.position); fishnetmarkers.push(fishNet2marker109); var zz109 = new google.maps.InfoWindow({content: "Date Collected: 09/27/1992
Location: 35.9045, -79.8539
Collector: "}); google.maps.event.addListener(fishNet2marker109, "click", function (e) { zz109.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9953,-79.4408); var fishNet2marker110 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker110.position); fishnetmarkers.push(fishNet2marker110); var zz110 = new google.maps.InfoWindow({content: "Date Collected: 07/30/1992
Location: 35.9953, -79.4408
Collector: "}); google.maps.event.addListener(fishNet2marker110, "click", function (e) { zz110.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9903,-79.4422); var fishNet2marker111 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker111.position); fishnetmarkers.push(fishNet2marker111); var zz111 = new google.maps.InfoWindow({content: "Date Collected: 07/30/1992
Location: 35.9903, -79.4422
Collector: "}); google.maps.event.addListener(fishNet2marker111, "click", function (e) { zz111.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8482,-79.8324); var fishNet2marker112 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker112.position); fishnetmarkers.push(fishNet2marker112); var zz112 = new google.maps.InfoWindow({content: "Date Collected: 10/24/1992
Location: 35.8482, -79.8324
Collector: "}); google.maps.event.addListener(fishNet2marker112, "click", function (e) { zz112.open(map, this); }); var myLatLng = new google.maps.LatLng(35.849,-79.8278); var fishNet2marker113 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker113.position); fishnetmarkers.push(fishNet2marker113); var zz113 = new google.maps.InfoWindow({content: "Date Collected: 10/24/1992
Location: 35.849, -79.8278
Collector: "}); google.maps.event.addListener(fishNet2marker113, "click", function (e) { zz113.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8216,-79.7984); var fishNet2marker114 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker114.position); fishnetmarkers.push(fishNet2marker114); var zz114 = new google.maps.InfoWindow({content: "Date Collected: 04/28/1993
Location: 35.8216, -79.7984
Collector: "}); google.maps.event.addListener(fishNet2marker114, "click", function (e) { zz114.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4197,-81.0297); var fishNet2marker115 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker115.position); fishnetmarkers.push(fishNet2marker115); var zz115 = new google.maps.InfoWindow({content: "Date Collected: 06/29/1993
Location: 35.4197, -81.0297
Collector: "}); google.maps.event.addListener(fishNet2marker115, "click", function (e) { zz115.open(map, this); }); var myLatLng = new google.maps.LatLng(36.3003,-79.7778); var fishNet2marker116 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker116.position); fishnetmarkers.push(fishNet2marker116); var zz116 = new google.maps.InfoWindow({content: "Date Collected: 11/03/1993
Location: 36.3003, -79.7778
Collector: "}); google.maps.event.addListener(fishNet2marker116, "click", function (e) { zz116.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1794,-79.6475); var fishNet2marker117 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker117.position); fishnetmarkers.push(fishNet2marker117); var zz117 = new google.maps.InfoWindow({content: "Date Collected: 11/03/1993
Location: 36.1794, -79.6475
Collector: "}); google.maps.event.addListener(fishNet2marker117, "click", function (e) { zz117.open(map, this); }); var myLatLng = new google.maps.LatLng(36.205,-79.3839); var fishNet2marker118 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker118.position); fishnetmarkers.push(fishNet2marker118); var zz118 = new google.maps.InfoWindow({content: "Date Collected: 11/04/1993
Location: 36.205, -79.3839
Collector: "}); google.maps.event.addListener(fishNet2marker118, "click", function (e) { zz118.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0183,-79.4025); var fishNet2marker119 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker119.position); fishnetmarkers.push(fishNet2marker119); var zz119 = new google.maps.InfoWindow({content: "Date Collected: 11/04/1993
Location: 36.0183, -79.4025
Collector: "}); google.maps.event.addListener(fishNet2marker119, "click", function (e) { zz119.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4878,-78.8467); var fishNet2marker120 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker120.position); fishnetmarkers.push(fishNet2marker120); var zz120 = new google.maps.InfoWindow({content: "Date Collected: 02/09/1994
Location: 35.4878, -78.8467
Collector: "}); google.maps.event.addListener(fishNet2marker120, "click", function (e) { zz120.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8756,-79.8756); var fishNet2marker121 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker121.position); fishnetmarkers.push(fishNet2marker121); var zz121 = new google.maps.InfoWindow({content: "Date Collected: 03/22/1994
Location: 35.8756, -79.8756
Collector: "}); google.maps.event.addListener(fishNet2marker121, "click", function (e) { zz121.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0139,-79.4322); var fishNet2marker122 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker122.position); fishnetmarkers.push(fishNet2marker122); var zz122 = new google.maps.InfoWindow({content: "Date Collected: 05/19/1994
Location: 36.0139, -79.4322
Collector: "}); google.maps.event.addListener(fishNet2marker122, "click", function (e) { zz122.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4342,-79.5942); var fishNet2marker123 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker123.position); fishnetmarkers.push(fishNet2marker123); var zz123 = new google.maps.InfoWindow({content: "Date Collected: 05/20/1994
Location: 35.4342, -79.5942
Collector: "}); google.maps.event.addListener(fishNet2marker123, "click", function (e) { zz123.open(map, this); }); var myLatLng = new google.maps.LatLng(36.5411,-79.2633); var fishNet2marker124 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker124.position); fishnetmarkers.push(fishNet2marker124); var zz124 = new google.maps.InfoWindow({content: "Date Collected: 10/05/1994
Location: 36.5411, -79.2633
Collector: "}); google.maps.event.addListener(fishNet2marker124, "click", function (e) { zz124.open(map, this); }); var myLatLng = new google.maps.LatLng(36.5075,-79.3358); var fishNet2marker125 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker125.position); fishnetmarkers.push(fishNet2marker125); var zz125 = new google.maps.InfoWindow({content: "Date Collected: 09/07/1994
Location: 36.5075, -79.3358
Collector: "}); google.maps.event.addListener(fishNet2marker125, "click", function (e) { zz125.open(map, this); }); var myLatLng = new google.maps.LatLng(36.4825,-78.9803); var fishNet2marker126 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker126.position); fishnetmarkers.push(fishNet2marker126); var zz126 = new google.maps.InfoWindow({content: "Date Collected: 09/07/1994
Location: 36.4825, -78.9803
Collector: "}); google.maps.event.addListener(fishNet2marker126, "click", function (e) { zz126.open(map, this); }); var myLatLng = new google.maps.LatLng(36.5378,-79.2011); var fishNet2marker127 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker127.position); fishnetmarkers.push(fishNet2marker127); var zz127 = new google.maps.InfoWindow({content: "Date Collected: 09/07/1994
Location: 36.5378, -79.2011
Collector: "}); google.maps.event.addListener(fishNet2marker127, "click", function (e) { zz127.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9617,-78.5425); var fishNet2marker128 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker128.position); fishnetmarkers.push(fishNet2marker128); var zz128 = new google.maps.InfoWindow({content: "Date Collected: 04/12/1995
Location: 35.9617, -78.5425
Collector: "}); google.maps.event.addListener(fishNet2marker128, "click", function (e) { zz128.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0722,-78.863); var fishNet2marker129 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker129.position); fishnetmarkers.push(fishNet2marker129); var zz129 = new google.maps.InfoWindow({content: "Date Collected: 10/24/1977
Location: 36.0722, -78.863
Collector: "}); google.maps.event.addListener(fishNet2marker129, "click", function (e) { zz129.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9807,-78.7382); var fishNet2marker130 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker130.position); fishnetmarkers.push(fishNet2marker130); var zz130 = new google.maps.InfoWindow({content: "Date Collected: 04/09/1950
Location: 35.9807, -78.7382
Collector: "}); google.maps.event.addListener(fishNet2marker130, "click", function (e) { zz130.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1236,-79.1551); var fishNet2marker131 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker131.position); fishnetmarkers.push(fishNet2marker131); var zz131 = new google.maps.InfoWindow({content: "Date Collected: 11/16/1958
Location: 36.1236, -79.1551
Collector: "}); google.maps.event.addListener(fishNet2marker131, "click", function (e) { zz131.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1022,-79.1432); var fishNet2marker132 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker132.position); fishnetmarkers.push(fishNet2marker132); var zz132 = new google.maps.InfoWindow({content: "Date Collected: 10/08/1958
Location: 36.1022, -79.1432
Collector: "}); google.maps.event.addListener(fishNet2marker132, "click", function (e) { zz132.open(map, this); }); var myLatLng = new google.maps.LatLng(35.774,-79.1482); var fishNet2marker133 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker133.position); fishnetmarkers.push(fishNet2marker133); var zz133 = new google.maps.InfoWindow({content: "Date Collected: 04/10/1949
Location: 35.774, -79.1482
Collector: "}); google.maps.event.addListener(fishNet2marker133, "click", function (e) { zz133.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9858,-79.0223); var fishNet2marker134 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker134.position); fishnetmarkers.push(fishNet2marker134); var myLatLng = new google.maps.LatLng(36.0744,-79.0083); var fishNet2marker135 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker135.position); fishnetmarkers.push(fishNet2marker135); var zz135 = new google.maps.InfoWindow({content: "Date Collected: 05/06/1966
Location: 36.0744, -79.0083
Collector: "}); google.maps.event.addListener(fishNet2marker135, "click", function (e) { zz135.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9853,-79.0149); var fishNet2marker136 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker136.position); fishnetmarkers.push(fishNet2marker136); var zz136 = new google.maps.InfoWindow({content: "Date Collected: 10/05/1954
Location: 35.9853, -79.0149
Collector: "}); google.maps.event.addListener(fishNet2marker136, "click", function (e) { zz136.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1014,-79.1427); var fishNet2marker137 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker137.position); fishnetmarkers.push(fishNet2marker137); var zz137 = new google.maps.InfoWindow({content: "Date Collected: 04/27/1960
Location: 36.1014, -79.1427
Collector: "}); google.maps.event.addListener(fishNet2marker137, "click", function (e) { zz137.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2077,-79.3814); var fishNet2marker138 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker138.position); fishnetmarkers.push(fishNet2marker138); var zz138 = new google.maps.InfoWindow({content: "Date Collected: 05/15/1949
Location: 36.2077, -79.3814
Collector: "}); google.maps.event.addListener(fishNet2marker138, "click", function (e) { zz138.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1236,-79.1551); var fishNet2marker139 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker139.position); fishnetmarkers.push(fishNet2marker139); var zz139 = new google.maps.InfoWindow({content: "Date Collected: 10/19/1958
Location: 36.1236, -79.1551
Collector: "}); google.maps.event.addListener(fishNet2marker139, "click", function (e) { zz139.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9793,-79.0014); var fishNet2marker140 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker140.position); fishnetmarkers.push(fishNet2marker140); var zz140 = new google.maps.InfoWindow({content: "Date Collected: 10/24/1948
Location: 35.9793, -79.0014
Collector: "}); google.maps.event.addListener(fishNet2marker140, "click", function (e) { zz140.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9968,-79.5109); var fishNet2marker141 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker141.position); fishnetmarkers.push(fishNet2marker141); var zz141 = new google.maps.InfoWindow({content: "Date Collected: 05/15/1949
Location: 35.9968, -79.5109
Collector: "}); google.maps.event.addListener(fishNet2marker141, "click", function (e) { zz141.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1236,-79.1551); var fishNet2marker142 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker142.position); fishnetmarkers.push(fishNet2marker142); var zz142 = new google.maps.InfoWindow({content: "Date Collected: 09/07/1958
Location: 36.1236, -79.1551
Collector: "}); google.maps.event.addListener(fishNet2marker142, "click", function (e) { zz142.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1014,-79.1427); var fishNet2marker143 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker143.position); fishnetmarkers.push(fishNet2marker143); var zz143 = new google.maps.InfoWindow({content: "Date Collected: 09/07/1958
Location: 36.1014, -79.1427
Collector: "}); google.maps.event.addListener(fishNet2marker143, "click", function (e) { zz143.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1014,-79.1427); var fishNet2marker144 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker144.position); fishnetmarkers.push(fishNet2marker144); var zz144 = new google.maps.InfoWindow({content: "Date Collected: 05/04/1958
Location: 36.1014, -79.1427
Collector: "}); google.maps.event.addListener(fishNet2marker144, "click", function (e) { zz144.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1765,-79.7914); var fishNet2marker145 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker145.position); fishnetmarkers.push(fishNet2marker145); var zz145 = new google.maps.InfoWindow({content: "Date Collected: 07/19/1961
Location: 36.1765, -79.7914
Collector: "}); google.maps.event.addListener(fishNet2marker145, "click", function (e) { zz145.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1765,-79.7914); var fishNet2marker146 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker146.position); fishnetmarkers.push(fishNet2marker146); var zz146 = new google.maps.InfoWindow({content: "Date Collected: 07/19/1961
Location: 36.1765, -79.7914
Collector: "}); google.maps.event.addListener(fishNet2marker146, "click", function (e) { zz146.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9858,-79.0223); var fishNet2marker147 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker147.position); fishnetmarkers.push(fishNet2marker147); var zz147 = new google.maps.InfoWindow({content: "Date Collected: 09/13/1971
Location: 35.9858, -79.0223
Collector: "}); google.maps.event.addListener(fishNet2marker147, "click", function (e) { zz147.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0746,-78.6271); var fishNet2marker148 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker148.position); fishnetmarkers.push(fishNet2marker148); var zz148 = new google.maps.InfoWindow({content: "Date Collected: 08/17/1961
Location: 36.0746, -78.6271
Collector: "}); google.maps.event.addListener(fishNet2marker148, "click", function (e) { zz148.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1023,-79.1433); var fishNet2marker149 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker149.position); fishnetmarkers.push(fishNet2marker149); var zz149 = new google.maps.InfoWindow({content: "Date Collected: 07/08/1958
Location: 36.1023, -79.1433
Collector: "}); google.maps.event.addListener(fishNet2marker149, "click", function (e) { zz149.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1023,-79.1433); var fishNet2marker150 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker150.position); fishnetmarkers.push(fishNet2marker150); var zz150 = new google.maps.InfoWindow({content: "Date Collected: 07/14/1958
Location: 36.1023, -79.1433
Collector: "}); google.maps.event.addListener(fishNet2marker150, "click", function (e) { zz150.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1014,-79.1427); var fishNet2marker151 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker151.position); fishnetmarkers.push(fishNet2marker151); var zz151 = new google.maps.InfoWindow({content: "Date Collected: 11/16/1958
Location: 36.1014, -79.1427
Collector: "}); google.maps.event.addListener(fishNet2marker151, "click", function (e) { zz151.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2,-78.8867); var fishNet2marker152 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker152.position); fishnetmarkers.push(fishNet2marker152); var zz152 = new google.maps.InfoWindow({content: "Date Collected: 05/16/1995
Location: 36.2, -78.8867
Collector: "}); google.maps.event.addListener(fishNet2marker152, "click", function (e) { zz152.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0269,-78.6017); var fishNet2marker153 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker153.position); fishnetmarkers.push(fishNet2marker153); var zz153 = new google.maps.InfoWindow({content: "Date Collected: 05/16/1995
Location: 36.0269, -78.6017
Collector: "}); google.maps.event.addListener(fishNet2marker153, "click", function (e) { zz153.open(map, this); }); var myLatLng = new google.maps.LatLng(35.2735,-79.9964); var fishNet2marker154 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker154.position); fishnetmarkers.push(fishNet2marker154); var zz154 = new google.maps.InfoWindow({content: "Date Collected: 07/08/1960
Location: 35.2735, -79.9964
Collector: "}); google.maps.event.addListener(fishNet2marker154, "click", function (e) { zz154.open(map, this); }); var myLatLng = new google.maps.LatLng(35.2359,-80.0225); var fishNet2marker155 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker155.position); fishnetmarkers.push(fishNet2marker155); var zz155 = new google.maps.InfoWindow({content: "Date Collected: 07/08/1960
Location: 35.2359, -80.0225
Collector: "}); google.maps.event.addListener(fishNet2marker155, "click", function (e) { zz155.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9618,-80.2764); var fishNet2marker156 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker156.position); fishnetmarkers.push(fishNet2marker156); var zz156 = new google.maps.InfoWindow({content: "Date Collected: 07/14/1960
Location: 35.9618, -80.2764
Collector: "}); google.maps.event.addListener(fishNet2marker156, "click", function (e) { zz156.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0828,-79.14); var fishNet2marker157 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker157.position); fishnetmarkers.push(fishNet2marker157); var zz157 = new google.maps.InfoWindow({content: "Date Collected: 03/16/1992
Location: 36.0828, -79.14
Collector: "}); google.maps.event.addListener(fishNet2marker157, "click", function (e) { zz157.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4072,-80.891); var fishNet2marker158 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker158.position); fishnetmarkers.push(fishNet2marker158); var zz158 = new google.maps.InfoWindow({content: "Date Collected: 05/23/1999
Location: 35.4072, -80.891
Collector: "}); google.maps.event.addListener(fishNet2marker158, "click", function (e) { zz158.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4774,-79.5055); var fishNet2marker159 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker159.position); fishnetmarkers.push(fishNet2marker159); var zz159 = new google.maps.InfoWindow({content: "Date Collected: 05/11/1999
Location: 35.4774, -79.5055
Collector: "}); google.maps.event.addListener(fishNet2marker159, "click", function (e) { zz159.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4793,-79.5202); var fishNet2marker160 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker160.position); fishnetmarkers.push(fishNet2marker160); var zz160 = new google.maps.InfoWindow({content: "Date Collected: 05/09/2000
Location: 35.4793, -79.5202
Collector: "}); google.maps.event.addListener(fishNet2marker160, "click", function (e) { zz160.open(map, this); }); var myLatLng = new google.maps.LatLng(36.179,-79.5751); var fishNet2marker161 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker161.position); fishnetmarkers.push(fishNet2marker161); var zz161 = new google.maps.InfoWindow({content: "Date Collected: 08/23/2000
Location: 36.179, -79.5751
Collector: "}); google.maps.event.addListener(fishNet2marker161, "click", function (e) { zz161.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7644,-80.0029); var fishNet2marker162 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker162.position); fishnetmarkers.push(fishNet2marker162); var zz162 = new google.maps.InfoWindow({content: "Date Collected: 06/13/2001
Location: 35.7644, -80.0029
Collector: "}); google.maps.event.addListener(fishNet2marker162, "click", function (e) { zz162.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4732,-78.9138); var fishNet2marker163 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker163.position); fishnetmarkers.push(fishNet2marker163); var zz163 = new google.maps.InfoWindow({content: "Date Collected: 07/10/1996
Location: 35.4732, -78.9138
Collector: "}); google.maps.event.addListener(fishNet2marker163, "click", function (e) { zz163.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4565,-78.97); var fishNet2marker164 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker164.position); fishnetmarkers.push(fishNet2marker164); var zz164 = new google.maps.InfoWindow({content: "Date Collected: 07/01/1996
Location: 35.4565, -78.97
Collector: "}); google.maps.event.addListener(fishNet2marker164, "click", function (e) { zz164.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2,-78.8858); var fishNet2marker165 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker165.position); fishnetmarkers.push(fishNet2marker165); var zz165 = new google.maps.InfoWindow({content: "Date Collected: 08/01/2001
Location: 36.2, -78.8858
Collector: "}); google.maps.event.addListener(fishNet2marker165, "click", function (e) { zz165.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5276,-79.6416); var fishNet2marker166 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker166.position); fishnetmarkers.push(fishNet2marker166); var zz166 = new google.maps.InfoWindow({content: "Date Collected: 06/13/2001
Location: 35.5276, -79.6416
Collector: "}); google.maps.event.addListener(fishNet2marker166, "click", function (e) { zz166.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2281,-79.3735); var fishNet2marker167 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker167.position); fishnetmarkers.push(fishNet2marker167); var zz167 = new google.maps.InfoWindow({content: "Date Collected: 08/01/2001
Location: 36.2281, -79.3735
Collector: "}); google.maps.event.addListener(fishNet2marker167, "click", function (e) { zz167.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7323,-79.1074); var fishNet2marker168 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker168.position); fishnetmarkers.push(fishNet2marker168); var zz168 = new google.maps.InfoWindow({content: "Date Collected: 10/14/1997
Location: 35.7323, -79.1074
Collector: "}); google.maps.event.addListener(fishNet2marker168, "click", function (e) { zz168.open(map, this); }); var myLatLng = new google.maps.LatLng(35.1758,-80.5113); var fishNet2marker169 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker169.position); fishnetmarkers.push(fishNet2marker169); var zz169 = new google.maps.InfoWindow({content: "Date Collected: 05/16/2002
Location: 35.1758, -80.5113
Collector: "}); google.maps.event.addListener(fishNet2marker169, "click", function (e) { zz169.open(map, this); }); var myLatLng = new google.maps.LatLng(35.402,-79.6602); var fishNet2marker170 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker170.position); fishnetmarkers.push(fishNet2marker170); var zz170 = new google.maps.InfoWindow({content: "Date Collected: 04/07/1999
Location: 35.402, -79.6602
Collector: "}); google.maps.event.addListener(fishNet2marker170, "click", function (e) { zz170.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4019,-79.6601); var fishNet2marker171 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker171.position); fishnetmarkers.push(fishNet2marker171); var zz171 = new google.maps.InfoWindow({content: "Date Collected: 05/05/1998
Location: 35.4019, -79.6601
Collector: "}); google.maps.event.addListener(fishNet2marker171, "click", function (e) { zz171.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8756,-79.8772); var fishNet2marker172 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker172.position); fishnetmarkers.push(fishNet2marker172); var zz172 = new google.maps.InfoWindow({content: "Date Collected: 04/22/1998
Location: 35.8756, -79.8772
Collector: "}); google.maps.event.addListener(fishNet2marker172, "click", function (e) { zz172.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7297,-79.4289); var fishNet2marker173 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker173.position); fishnetmarkers.push(fishNet2marker173); var zz173 = new google.maps.InfoWindow({content: "Date Collected: 05/04/1998
Location: 35.7297, -79.4289
Collector: "}); google.maps.event.addListener(fishNet2marker173, "click", function (e) { zz173.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4833,-79.5161); var fishNet2marker174 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker174.position); fishnetmarkers.push(fishNet2marker174); var zz174 = new google.maps.InfoWindow({content: "Date Collected: 05/05/1998
Location: 35.4833, -79.5161
Collector: "}); google.maps.event.addListener(fishNet2marker174, "click", function (e) { zz174.open(map, this); }); var myLatLng = new google.maps.LatLng(35.402,-79.6601); var fishNet2marker175 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker175.position); fishnetmarkers.push(fishNet2marker175); var zz175 = new google.maps.InfoWindow({content: "Date Collected: 10/27/1999
Location: 35.402, -79.6601
Collector: "}); google.maps.event.addListener(fishNet2marker175, "click", function (e) { zz175.open(map, this); }); var myLatLng = new google.maps.LatLng(35.402,-79.6602); var fishNet2marker176 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker176.position); fishnetmarkers.push(fishNet2marker176); var zz176 = new google.maps.InfoWindow({content: "Date Collected: 06/14/1999
Location: 35.402, -79.6602
Collector: "}); google.maps.event.addListener(fishNet2marker176, "click", function (e) { zz176.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7656,-79.9925); var fishNet2marker177 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker177.position); fishnetmarkers.push(fishNet2marker177); var zz177 = new google.maps.InfoWindow({content: "Date Collected: 10/26/1999
Location: 35.7656, -79.9925
Collector: "}); google.maps.event.addListener(fishNet2marker177, "click", function (e) { zz177.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9985,-79.6437); var fishNet2marker178 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker178.position); fishnetmarkers.push(fishNet2marker178); var zz178 = new google.maps.InfoWindow({content: "Date Collected: 10/26/1999
Location: 35.9985, -79.6437
Collector: "}); google.maps.event.addListener(fishNet2marker178, "click", function (e) { zz178.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7656,-79.9925); var fishNet2marker179 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker179.position); fishnetmarkers.push(fishNet2marker179); var zz179 = new google.maps.InfoWindow({content: "Date Collected: 04/14/1999
Location: 35.7656, -79.9925
Collector: "}); google.maps.event.addListener(fishNet2marker179, "click", function (e) { zz179.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9985,-79.6437); var fishNet2marker180 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker180.position); fishnetmarkers.push(fishNet2marker180); var zz180 = new google.maps.InfoWindow({content: "Date Collected: 04/20/1999
Location: 35.9985, -79.6437
Collector: "}); google.maps.event.addListener(fishNet2marker180, "click", function (e) { zz180.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1794,-79.6475); var fishNet2marker181 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker181.position); fishnetmarkers.push(fishNet2marker181); var zz181 = new google.maps.InfoWindow({content: "Date Collected: 10/12/1998
Location: 36.1794, -79.6475
Collector: "}); google.maps.event.addListener(fishNet2marker181, "click", function (e) { zz181.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0297,-79.7191); var fishNet2marker182 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker182.position); fishnetmarkers.push(fishNet2marker182); var zz182 = new google.maps.InfoWindow({content: "Date Collected: 04/22/1998
Location: 36.0297, -79.7191
Collector: "}); google.maps.event.addListener(fishNet2marker182, "click", function (e) { zz182.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9411,-79.9322); var fishNet2marker183 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker183.position); fishnetmarkers.push(fishNet2marker183); var zz183 = new google.maps.InfoWindow({content: "Date Collected: 04/22/1998
Location: 35.9411, -79.9322
Collector: "}); google.maps.event.addListener(fishNet2marker183, "click", function (e) { zz183.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1794,-79.6475); var fishNet2marker184 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker184.position); fishnetmarkers.push(fishNet2marker184); var zz184 = new google.maps.InfoWindow({content: "Date Collected: 04/07/1998
Location: 36.1794, -79.6475
Collector: "}); google.maps.event.addListener(fishNet2marker184, "click", function (e) { zz184.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4642,-79.6958); var fishNet2marker185 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker185.position); fishnetmarkers.push(fishNet2marker185); var zz185 = new google.maps.InfoWindow({content: "Date Collected: 09/21/1998
Location: 35.4642, -79.6958
Collector: "}); google.maps.event.addListener(fishNet2marker185, "click", function (e) { zz185.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9985,-79.6437); var fishNet2marker186 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker186.position); fishnetmarkers.push(fishNet2marker186); var zz186 = new google.maps.InfoWindow({content: "Date Collected: 04/08/1998
Location: 35.9985, -79.6437
Collector: "}); google.maps.event.addListener(fishNet2marker186, "click", function (e) { zz186.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0139,-79.4322); var fishNet2marker187 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker187.position); fishnetmarkers.push(fishNet2marker187); var zz187 = new google.maps.InfoWindow({content: "Date Collected: 04/08/1998
Location: 36.0139, -79.4322
Collector: "}); google.maps.event.addListener(fishNet2marker187, "click", function (e) { zz187.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9272,-79.0289); var fishNet2marker188 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker188.position); fishnetmarkers.push(fishNet2marker188); var zz188 = new google.maps.InfoWindow({content: "Date Collected: 05/18/1998
Location: 35.9272, -79.0289
Collector: "}); google.maps.event.addListener(fishNet2marker188, "click", function (e) { zz188.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5393,-78.9197); var fishNet2marker189 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker189.position); fishnetmarkers.push(fishNet2marker189); var zz189 = new google.maps.InfoWindow({content: "Date Collected: 02/01/2002
Location: 35.5393, -78.9197
Collector: "}); google.maps.event.addListener(fishNet2marker189, "click", function (e) { zz189.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4706,-81.1203); var fishNet2marker190 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker190.position); fishnetmarkers.push(fishNet2marker190); var zz190 = new google.maps.InfoWindow({content: "Date Collected: 05/20/1997
Location: 35.4706, -81.1203
Collector: "}); google.maps.event.addListener(fishNet2marker190, "click", function (e) { zz190.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7656,-79.9925); var fishNet2marker191 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker191.position); fishnetmarkers.push(fishNet2marker191); var zz191 = new google.maps.InfoWindow({content: "Date Collected: 04/24/1996
Location: 35.7656, -79.9925
Collector: "}); google.maps.event.addListener(fishNet2marker191, "click", function (e) { zz191.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3575,-80.4308); var fishNet2marker192 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker192.position); fishnetmarkers.push(fishNet2marker192); var zz192 = new google.maps.InfoWindow({content: "Date Collected: 04/17/1996
Location: 35.3575, -80.4308
Collector: "}); google.maps.event.addListener(fishNet2marker192, "click", function (e) { zz192.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3483,-80.5483); var fishNet2marker193 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker193.position); fishnetmarkers.push(fishNet2marker193); var zz193 = new google.maps.InfoWindow({content: "Date Collected: 04/17/1996
Location: 35.3483, -80.5483
Collector: "}); google.maps.event.addListener(fishNet2marker193, "click", function (e) { zz193.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9364,-80.115); var fishNet2marker194 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker194.position); fishnetmarkers.push(fishNet2marker194); var zz194 = new google.maps.InfoWindow({content: "Date Collected: 04/25/1996
Location: 35.9364, -80.115
Collector: "}); google.maps.event.addListener(fishNet2marker194, "click", function (e) { zz194.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4072,-80.8906); var fishNet2marker195 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker195.position); fishnetmarkers.push(fishNet2marker195); var zz195 = new google.maps.InfoWindow({content: "Date Collected: 06/12/1997
Location: 35.4072, -80.8906
Collector: "}); google.maps.event.addListener(fishNet2marker195, "click", function (e) { zz195.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3261,-80.7736); var fishNet2marker196 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker196.position); fishnetmarkers.push(fishNet2marker196); var zz196 = new google.maps.InfoWindow({content: "Date Collected: 06/10/1996
Location: 35.3261, -80.7736
Collector: "}); google.maps.event.addListener(fishNet2marker196, "click", function (e) { zz196.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2775,-79.045); var fishNet2marker197 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker197.position); fishnetmarkers.push(fishNet2marker197); var zz197 = new google.maps.InfoWindow({content: "Date Collected: 04/06/2000
Location: 36.2775, -79.045
Collector: "}); google.maps.event.addListener(fishNet2marker197, "click", function (e) { zz197.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3575,-80.4308); var fishNet2marker198 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker198.position); fishnetmarkers.push(fishNet2marker198); var zz198 = new google.maps.InfoWindow({content: "Date Collected: 04/18/2001
Location: 35.3575, -80.4308
Collector: "}); google.maps.event.addListener(fishNet2marker198, "click", function (e) { zz198.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3033,-80.5947); var fishNet2marker199 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker199.position); fishnetmarkers.push(fishNet2marker199); var zz199 = new google.maps.InfoWindow({content: "Date Collected: 04/18/2001
Location: 35.3033, -80.5947
Collector: "}); google.maps.event.addListener(fishNet2marker199, "click", function (e) { zz199.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3483,-80.5483); var fishNet2marker200 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker200.position); fishnetmarkers.push(fishNet2marker200); var zz200 = new google.maps.InfoWindow({content: "Date Collected: 04/19/2001
Location: 35.3483, -80.5483
Collector: "}); google.maps.event.addListener(fishNet2marker200, "click", function (e) { zz200.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3261,-80.7736); var fishNet2marker201 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker201.position); fishnetmarkers.push(fishNet2marker201); var zz201 = new google.maps.InfoWindow({content: "Date Collected: 04/19/2001
Location: 35.3261, -80.7736
Collector: "}); google.maps.event.addListener(fishNet2marker201, "click", function (e) { zz201.open(map, this); }); var myLatLng = new google.maps.LatLng(36.3131,-80.4006); var fishNet2marker202 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker202.position); fishnetmarkers.push(fishNet2marker202); var zz202 = new google.maps.InfoWindow({content: "Date Collected: 06/21/2001
Location: 36.3131, -80.4006
Collector: "}); google.maps.event.addListener(fishNet2marker202, "click", function (e) { zz202.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9272,-79.0289); var fishNet2marker203 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker203.position); fishnetmarkers.push(fishNet2marker203); var zz203 = new google.maps.InfoWindow({content: "Date Collected: 10/22/2001
Location: 35.9272, -79.0289
Collector: "}); google.maps.event.addListener(fishNet2marker203, "click", function (e) { zz203.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9256,-79.0542); var fishNet2marker204 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker204.position); fishnetmarkers.push(fishNet2marker204); var zz204 = new google.maps.InfoWindow({content: "Date Collected: 10/22/2001
Location: 35.9256, -79.0542
Collector: "}); google.maps.event.addListener(fishNet2marker204, "click", function (e) { zz204.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4567,-81.0342); var fishNet2marker205 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker205.position); fishnetmarkers.push(fishNet2marker205); var zz205 = new google.maps.InfoWindow({content: "Date Collected: 05/21/2002
Location: 35.4567, -81.0342
Collector: "}); google.maps.event.addListener(fishNet2marker205, "click", function (e) { zz205.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0658,-79.5993); var fishNet2marker206 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker206.position); fishnetmarkers.push(fishNet2marker206); var zz206 = new google.maps.InfoWindow({content: "Date Collected: 06/10/2003
Location: 36.0658, -79.5993
Collector: "}); google.maps.event.addListener(fishNet2marker206, "click", function (e) { zz206.open(map, this); }); var myLatLng = new google.maps.LatLng(36.065,-79.5995); var fishNet2marker207 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker207.position); fishnetmarkers.push(fishNet2marker207); var zz207 = new google.maps.InfoWindow({content: "Date Collected: 06/10/2003
Location: 36.065, -79.5995
Collector: "}); google.maps.event.addListener(fishNet2marker207, "click", function (e) { zz207.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0817,-79.829); var fishNet2marker208 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker208.position); fishnetmarkers.push(fishNet2marker208); var zz208 = new google.maps.InfoWindow({content: "Date Collected: 06/12/2003
Location: 36.0817, -79.829
Collector: "}); google.maps.event.addListener(fishNet2marker208, "click", function (e) { zz208.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0594,-79.3785); var fishNet2marker209 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker209.position); fishnetmarkers.push(fishNet2marker209); var zz209 = new google.maps.InfoWindow({content: "Date Collected: 06/13/2003
Location: 36.0594, -79.3785
Collector: "}); google.maps.event.addListener(fishNet2marker209, "click", function (e) { zz209.open(map, this); }); var myLatLng = new google.maps.LatLng(35.941,-79.9319); var fishNet2marker210 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker210.position); fishnetmarkers.push(fishNet2marker210); var zz210 = new google.maps.InfoWindow({content: "Date Collected: 06/11/2003
Location: 35.941, -79.9319
Collector: "}); google.maps.event.addListener(fishNet2marker210, "click", function (e) { zz210.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0345,-79.4094); var fishNet2marker211 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker211.position); fishnetmarkers.push(fishNet2marker211); var zz211 = new google.maps.InfoWindow({content: "Date Collected: 04/23/2003
Location: 36.0345, -79.4094
Collector: "}); google.maps.event.addListener(fishNet2marker211, "click", function (e) { zz211.open(map, this); }); var myLatLng = new google.maps.LatLng(35.989,-79.4968); var fishNet2marker212 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker212.position); fishnetmarkers.push(fishNet2marker212); var zz212 = new google.maps.InfoWindow({content: "Date Collected: 04/24/2003
Location: 35.989, -79.4968
Collector: "}); google.maps.event.addListener(fishNet2marker212, "click", function (e) { zz212.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5383,-79.3358); var fishNet2marker213 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker213.position); fishnetmarkers.push(fishNet2marker213); var zz213 = new google.maps.InfoWindow({content: "Date Collected: 06/13/2003
Location: 35.5383, -79.3358
Collector: "}); google.maps.event.addListener(fishNet2marker213, "click", function (e) { zz213.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7067,-79.1336); var fishNet2marker214 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker214.position); fishnetmarkers.push(fishNet2marker214); var zz214 = new google.maps.InfoWindow({content: "Date Collected: 05/05/2003
Location: 35.7067, -79.1336
Collector: "}); google.maps.event.addListener(fishNet2marker214, "click", function (e) { zz214.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0792,-79.0078); var fishNet2marker215 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker215.position); fishnetmarkers.push(fishNet2marker215); var zz215 = new google.maps.InfoWindow({content: "Date Collected: 09/30/2003
Location: 36.0792, -79.0078
Collector: "}); google.maps.event.addListener(fishNet2marker215, "click", function (e) { zz215.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1644,-78.7407); var fishNet2marker216 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker216.position); fishnetmarkers.push(fishNet2marker216); var zz216 = new google.maps.InfoWindow({content: "Date Collected: 10/14/2003
Location: 36.1644, -78.7407
Collector: "}); google.maps.event.addListener(fishNet2marker216, "click", function (e) { zz216.open(map, this); }); var myLatLng = new google.maps.LatLng(36.3975,-79.1972); var fishNet2marker217 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker217.position); fishnetmarkers.push(fishNet2marker217); var zz217 = new google.maps.InfoWindow({content: "Date Collected: 04/30/2004
Location: 36.3975, -79.1972
Collector: "}); google.maps.event.addListener(fishNet2marker217, "click", function (e) { zz217.open(map, this); }); var myLatLng = new google.maps.LatLng(36.5406,-79.2633); var fishNet2marker218 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker218.position); fishnetmarkers.push(fishNet2marker218); var zz218 = new google.maps.InfoWindow({content: "Date Collected: 05/25/2004
Location: 36.5406, -79.2633
Collector: "}); google.maps.event.addListener(fishNet2marker218, "click", function (e) { zz218.open(map, this); }); var myLatLng = new google.maps.LatLng(35.916,-79.307); var fishNet2marker219 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker219.position); fishnetmarkers.push(fishNet2marker219); var zz219 = new google.maps.InfoWindow({content: "Date Collected: 06/09/2004
Location: 35.916, -79.307
Collector: "}); google.maps.event.addListener(fishNet2marker219, "click", function (e) { zz219.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4779,-79.5066); var fishNet2marker220 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker220.position); fishnetmarkers.push(fishNet2marker220); var zz220 = new google.maps.InfoWindow({content: "Date Collected: 10/29/2004
Location: 35.4779, -79.5066
Collector: "}); google.maps.event.addListener(fishNet2marker220, "click", function (e) { zz220.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5701,-79.2414); var fishNet2marker221 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker221.position); fishnetmarkers.push(fishNet2marker221); var zz221 = new google.maps.InfoWindow({content: "Date Collected: 10/27/2004
Location: 35.5701, -79.2414
Collector: "}); google.maps.event.addListener(fishNet2marker221, "click", function (e) { zz221.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3142,-80.4653); var fishNet2marker222 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker222.position); fishnetmarkers.push(fishNet2marker222); var zz222 = new google.maps.InfoWindow({content: "Date Collected: 07/16/2004
Location: 35.3142, -80.4653
Collector: "}); google.maps.event.addListener(fishNet2marker222, "click", function (e) { zz222.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7745,-79.1204); var fishNet2marker223 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker223.position); fishnetmarkers.push(fishNet2marker223); var zz223 = new google.maps.InfoWindow({content: "Date Collected: 07/19/2004
Location: 35.7745, -79.1204
Collector: "}); google.maps.event.addListener(fishNet2marker223, "click", function (e) { zz223.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4772,-79.5056); var fishNet2marker224 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker224.position); fishnetmarkers.push(fishNet2marker224); var zz224 = new google.maps.InfoWindow({content: "Date Collected: 05/27/2005
Location: 35.4772, -79.5056
Collector: "}); google.maps.event.addListener(fishNet2marker224, "click", function (e) { zz224.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5153,-79.3517); var fishNet2marker225 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker225.position); fishnetmarkers.push(fishNet2marker225); var zz225 = new google.maps.InfoWindow({content: "Date Collected: 05/26/2005
Location: 35.5153, -79.3517
Collector: "}); google.maps.event.addListener(fishNet2marker225, "click", function (e) { zz225.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8835,-79.2549); var fishNet2marker226 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker226.position); fishnetmarkers.push(fishNet2marker226); var zz226 = new google.maps.InfoWindow({content: "Date Collected: 09/19/2005
Location: 35.8835, -79.2549
Collector: "}); google.maps.event.addListener(fishNet2marker226, "click", function (e) { zz226.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8668,-79.2498); var fishNet2marker227 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker227.position); fishnetmarkers.push(fishNet2marker227); var zz227 = new google.maps.InfoWindow({content: "Date Collected: 09/19/2005
Location: 35.8668, -79.2498
Collector: "}); google.maps.event.addListener(fishNet2marker227, "click", function (e) { zz227.open(map, this); }); var myLatLng = new google.maps.LatLng(35.838,-79.2329); var fishNet2marker228 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker228.position); fishnetmarkers.push(fishNet2marker228); var zz228 = new google.maps.InfoWindow({content: "Date Collected: 09/19/2005
Location: 35.838, -79.2329
Collector: "}); google.maps.event.addListener(fishNet2marker228, "click", function (e) { zz228.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8066,-79.1833); var fishNet2marker229 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker229.position); fishnetmarkers.push(fishNet2marker229); var zz229 = new google.maps.InfoWindow({content: "Date Collected: 09/20/2005
Location: 35.8066, -79.1833
Collector: "}); google.maps.event.addListener(fishNet2marker229, "click", function (e) { zz229.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7758,-79.1468); var fishNet2marker230 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker230.position); fishnetmarkers.push(fishNet2marker230); var zz230 = new google.maps.InfoWindow({content: "Date Collected: 09/26/2005
Location: 35.7758, -79.1468
Collector: "}); google.maps.event.addListener(fishNet2marker230, "click", function (e) { zz230.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7716,-79.1445); var fishNet2marker231 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker231.position); fishnetmarkers.push(fishNet2marker231); var zz231 = new google.maps.InfoWindow({content: "Date Collected: 09/26/2005
Location: 35.7716, -79.1445
Collector: "}); google.maps.event.addListener(fishNet2marker231, "click", function (e) { zz231.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7312,-79.1069); var fishNet2marker232 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker232.position); fishnetmarkers.push(fishNet2marker232); var zz232 = new google.maps.InfoWindow({content: "Date Collected: 09/26/2005
Location: 35.7312, -79.1069
Collector: "}); google.maps.event.addListener(fishNet2marker232, "click", function (e) { zz232.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9517,-78.6872); var fishNet2marker233 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker233.position); fishnetmarkers.push(fishNet2marker233); var zz233 = new google.maps.InfoWindow({content: "Date Collected: 04/04/2005
Location: 35.9517, -78.6872
Collector: "}); google.maps.event.addListener(fishNet2marker233, "click", function (e) { zz233.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9617,-78.5425); var fishNet2marker234 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker234.position); fishnetmarkers.push(fishNet2marker234); var zz234 = new google.maps.InfoWindow({content: "Date Collected: 04/04/2005
Location: 35.9617, -78.5425
Collector: "}); google.maps.event.addListener(fishNet2marker234, "click", function (e) { zz234.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2403,-78.8892); var fishNet2marker235 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker235.position); fishnetmarkers.push(fishNet2marker235); var zz235 = new google.maps.InfoWindow({content: "Date Collected: 04/06/2005
Location: 36.2403, -78.8892
Collector: "}); google.maps.event.addListener(fishNet2marker235, "click", function (e) { zz235.open(map, this); }); var myLatLng = new google.maps.LatLng(36.2775,-79.045); var fishNet2marker236 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker236.position); fishnetmarkers.push(fishNet2marker236); var zz236 = new google.maps.InfoWindow({content: "Date Collected: 04/06/2005
Location: 36.2775, -79.045
Collector: "}); google.maps.event.addListener(fishNet2marker236, "click", function (e) { zz236.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1233,-79.1556); var fishNet2marker237 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker237.position); fishnetmarkers.push(fishNet2marker237); var zz237 = new google.maps.InfoWindow({content: "Date Collected: 04/07/2005
Location: 36.1233, -79.1556
Collector: "}); google.maps.event.addListener(fishNet2marker237, "click", function (e) { zz237.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3474,-80.5477); var fishNet2marker238 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker238.position); fishnetmarkers.push(fishNet2marker238); var zz238 = new google.maps.InfoWindow({content: "Date Collected: 05/12/2006
Location: 35.3474, -80.5477
Collector: "}); google.maps.event.addListener(fishNet2marker238, "click", function (e) { zz238.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4158,-80.5558); var fishNet2marker239 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker239.position); fishnetmarkers.push(fishNet2marker239); var zz239 = new google.maps.InfoWindow({content: "Date Collected: 05/12/2006
Location: 35.4158, -80.5558
Collector: "}); google.maps.event.addListener(fishNet2marker239, "click", function (e) { zz239.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0431,-81.4147); var fishNet2marker240 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker240.position); fishnetmarkers.push(fishNet2marker240); var zz240 = new google.maps.InfoWindow({content: "Date Collected: 06/23/2006
Location: 36.0431, -81.4147
Collector: "}); google.maps.event.addListener(fishNet2marker240, "click", function (e) { zz240.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4767,-79.5052); var fishNet2marker241 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker241.position); fishnetmarkers.push(fishNet2marker241); var zz241 = new google.maps.InfoWindow({content: "Date Collected: 10/24/2006
Location: 35.4767, -79.5052
Collector: "}); google.maps.event.addListener(fishNet2marker241, "click", function (e) { zz241.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5154,-79.3516); var fishNet2marker242 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker242.position); fishnetmarkers.push(fishNet2marker242); var zz242 = new google.maps.InfoWindow({content: "Date Collected: 06/09/2006
Location: 35.5154, -79.3516
Collector: "}); google.maps.event.addListener(fishNet2marker242, "click", function (e) { zz242.open(map, this); }); var myLatLng = new google.maps.LatLng(35.447,-81.0427); var fishNet2marker243 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker243.position); fishnetmarkers.push(fishNet2marker243); var zz243 = new google.maps.InfoWindow({content: "Date Collected: 04/25/2007
Location: 35.447, -81.0427
Collector: "}); google.maps.event.addListener(fishNet2marker243, "click", function (e) { zz243.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4567,-81.0342); var fishNet2marker244 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker244.position); fishnetmarkers.push(fishNet2marker244); var zz244 = new google.maps.InfoWindow({content: "Date Collected: 04/25/2007
Location: 35.4567, -81.0342
Collector: "}); google.maps.event.addListener(fishNet2marker244, "click", function (e) { zz244.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4474,-81.0109); var fishNet2marker245 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker245.position); fishnetmarkers.push(fishNet2marker245); var zz245 = new google.maps.InfoWindow({content: "Date Collected: 04/25/2007
Location: 35.4474, -81.0109
Collector: "}); google.maps.event.addListener(fishNet2marker245, "click", function (e) { zz245.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9521,-78.6873); var fishNet2marker246 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker246.position); fishnetmarkers.push(fishNet2marker246); var zz246 = new google.maps.InfoWindow({content: "Date Collected: 07/01/2008
Location: 35.9521, -78.6873
Collector: "}); google.maps.event.addListener(fishNet2marker246, "click", function (e) { zz246.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0974,-78.8745); var fishNet2marker247 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker247.position); fishnetmarkers.push(fishNet2marker247); var zz247 = new google.maps.InfoWindow({content: "Date Collected: 08/03/1961
Location: 36.0974, -78.8745
Collector: "}); google.maps.event.addListener(fishNet2marker247, "click", function (e) { zz247.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9794,-79.0014); var fishNet2marker248 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker248.position); fishnetmarkers.push(fishNet2marker248); var zz248 = new google.maps.InfoWindow({content: "Date Collected: 05/05/1966
Location: 35.9794, -79.0014
Collector: "}); google.maps.event.addListener(fishNet2marker248, "click", function (e) { zz248.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4781,-79.5065); var fishNet2marker249 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker249.position); fishnetmarkers.push(fishNet2marker249); var zz249 = new google.maps.InfoWindow({content: "Date Collected: 06/05/2007
Location: 35.4781, -79.5065
Collector: "}); google.maps.event.addListener(fishNet2marker249, "click", function (e) { zz249.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5705,-79.2418); var fishNet2marker250 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker250.position); fishnetmarkers.push(fishNet2marker250); var zz250 = new google.maps.InfoWindow({content: "Date Collected: 05/23/2007
Location: 35.5705, -79.2418
Collector: "}); google.maps.event.addListener(fishNet2marker250, "click", function (e) { zz250.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9399,-78.5759); var fishNet2marker251 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker251.position); fishnetmarkers.push(fishNet2marker251); var zz251 = new google.maps.InfoWindow({content: "Date Collected: 07/14/1961
Location: 35.9399, -78.5759
Collector: "}); google.maps.event.addListener(fishNet2marker251, "click", function (e) { zz251.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8266,-79.1911); var fishNet2marker252 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker252.position); fishnetmarkers.push(fishNet2marker252); var zz252 = new google.maps.InfoWindow({content: "Date Collected: 05/15/2008
Location: 35.8266, -79.1911
Collector: "}); google.maps.event.addListener(fishNet2marker252, "click", function (e) { zz252.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7475,-80.4741); var fishNet2marker253 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker253.position); fishnetmarkers.push(fishNet2marker253); var zz253 = new google.maps.InfoWindow({content: "Date Collected: 06/13/1961
Location: 35.7475, -80.4741
Collector: "}); google.maps.event.addListener(fishNet2marker253, "click", function (e) { zz253.open(map, this); }); var myLatLng = new google.maps.LatLng(36.237,-79.4451); var fishNet2marker254 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker254.position); fishnetmarkers.push(fishNet2marker254); var zz254 = new google.maps.InfoWindow({content: "Date Collected: 07/16/1963
Location: 36.237, -79.4451
Collector: "}); google.maps.event.addListener(fishNet2marker254, "click", function (e) { zz254.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7032,-79.0921); var fishNet2marker255 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker255.position); fishnetmarkers.push(fishNet2marker255); var zz255 = new google.maps.InfoWindow({content: "Date Collected: 06/04/1963
Location: 35.7032, -79.0921
Collector: "}); google.maps.event.addListener(fishNet2marker255, "click", function (e) { zz255.open(map, this); }); var myLatLng = new google.maps.LatLng(35.984,-79.6571); var fishNet2marker256 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker256.position); fishnetmarkers.push(fishNet2marker256); var zz256 = new google.maps.InfoWindow({content: "Date Collected: 03/21/2009
Location: 35.984, -79.6571
Collector: "}); google.maps.event.addListener(fishNet2marker256, "click", function (e) { zz256.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9735,-79.6619); var fishNet2marker257 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker257.position); fishnetmarkers.push(fishNet2marker257); var zz257 = new google.maps.InfoWindow({content: "Date Collected: 07/10/2009
Location: 35.9735, -79.6619
Collector: "}); google.maps.event.addListener(fishNet2marker257, "click", function (e) { zz257.open(map, this); }); var myLatLng = new google.maps.LatLng(35.6789,-79.2899); var fishNet2marker258 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker258.position); fishnetmarkers.push(fishNet2marker258); var zz258 = new google.maps.InfoWindow({content: "Date Collected: 07/15/2009
Location: 35.6789, -79.2899
Collector: "}); google.maps.event.addListener(fishNet2marker258, "click", function (e) { zz258.open(map, this); }); var myLatLng = new google.maps.LatLng(35.8433,-80.3888); var fishNet2marker259 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker259.position); fishnetmarkers.push(fishNet2marker259); var zz259 = new google.maps.InfoWindow({content: "Date Collected: 10/10/2009
Location: 35.8433, -80.3888
Collector: "}); google.maps.event.addListener(fishNet2marker259, "click", function (e) { zz259.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9871,-79.3587); var fishNet2marker260 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker260.position); fishnetmarkers.push(fishNet2marker260); var zz260 = new google.maps.InfoWindow({content: "Date Collected: 04/13/2009
Location: 35.9871, -79.3587
Collector: "}); google.maps.event.addListener(fishNet2marker260, "click", function (e) { zz260.open(map, this); }); var myLatLng = new google.maps.LatLng(36.5078,-79.2933); var fishNet2marker261 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker261.position); fishnetmarkers.push(fishNet2marker261); var zz261 = new google.maps.InfoWindow({content: "Date Collected: 05/21/2009
Location: 36.5078, -79.2933
Collector: "}); google.maps.event.addListener(fishNet2marker261, "click", function (e) { zz261.open(map, this); }); var myLatLng = new google.maps.LatLng(35.989,-79.4968); var fishNet2marker262 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker262.position); fishnetmarkers.push(fishNet2marker262); var zz262 = new google.maps.InfoWindow({content: "Date Collected: 06/04/2009
Location: 35.989, -79.4968
Collector: "}); google.maps.event.addListener(fishNet2marker262, "click", function (e) { zz262.open(map, this); }); var myLatLng = new google.maps.LatLng(35.2507,-80.6891); var fishNet2marker263 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker263.position); fishnetmarkers.push(fishNet2marker263); var zz263 = new google.maps.InfoWindow({content: "Date Collected: 07/08/2009
Location: 35.2507, -80.6891
Collector: "}); google.maps.event.addListener(fishNet2marker263, "click", function (e) { zz263.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9522,-78.6871); var fishNet2marker264 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker264.position); fishnetmarkers.push(fishNet2marker264); var zz264 = new google.maps.InfoWindow({content: "Date Collected: 04/06/2010
Location: 35.9522, -78.6871
Collector: "}); google.maps.event.addListener(fishNet2marker264, "click", function (e) { zz264.open(map, this); }); var myLatLng = new google.maps.LatLng(35.2508,-80.6893); var fishNet2marker265 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker265.position); fishnetmarkers.push(fishNet2marker265); var zz265 = new google.maps.InfoWindow({content: "Date Collected: 07/15/1997
Location: 35.2508, -80.6893
Collector: "}); google.maps.event.addListener(fishNet2marker265, "click", function (e) { zz265.open(map, this); }); var myLatLng = new google.maps.LatLng(35.2717,-80.5234); var fishNet2marker266 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker266.position); fishnetmarkers.push(fishNet2marker266); var zz266 = new google.maps.InfoWindow({content: "Date Collected: 07/16/1997
Location: 35.2717, -80.5234
Collector: "}); google.maps.event.addListener(fishNet2marker266, "click", function (e) { zz266.open(map, this); }); var myLatLng = new google.maps.LatLng(35.2192,-80.5665); var fishNet2marker267 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker267.position); fishnetmarkers.push(fishNet2marker267); var zz267 = new google.maps.InfoWindow({content: "Date Collected: 07/17/1997
Location: 35.2192, -80.5665
Collector: "}); google.maps.event.addListener(fishNet2marker267, "click", function (e) { zz267.open(map, this); }); var myLatLng = new google.maps.LatLng(35.5477,-80.7492); var fishNet2marker268 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker268.position); fishnetmarkers.push(fishNet2marker268); var zz268 = new google.maps.InfoWindow({content: "Date Collected: 07/15/1997
Location: 35.5477, -80.7492
Collector: "}); google.maps.event.addListener(fishNet2marker268, "click", function (e) { zz268.open(map, this); }); var myLatLng = new google.maps.LatLng(35.1741,-80.5711); var fishNet2marker269 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker269.position); fishnetmarkers.push(fishNet2marker269); var zz269 = new google.maps.InfoWindow({content: "Date Collected: 07/17/1997
Location: 35.1741, -80.5711
Collector: "}); google.maps.event.addListener(fishNet2marker269, "click", function (e) { zz269.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3873,-80.438); var fishNet2marker270 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker270.position); fishnetmarkers.push(fishNet2marker270); var zz270 = new google.maps.InfoWindow({content: "Date Collected: 07/22/1997
Location: 35.3873, -80.438
Collector: "}); google.maps.event.addListener(fishNet2marker270, "click", function (e) { zz270.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4948,-80.714); var fishNet2marker271 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker271.position); fishnetmarkers.push(fishNet2marker271); var zz271 = new google.maps.InfoWindow({content: "Date Collected: 08/13/1997
Location: 35.4948, -80.714
Collector: "}); google.maps.event.addListener(fishNet2marker271, "click", function (e) { zz271.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3337,-80.7778); var fishNet2marker272 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker272.position); fishnetmarkers.push(fishNet2marker272); var zz272 = new google.maps.InfoWindow({content: "Date Collected: 08/13/1997
Location: 35.3337, -80.7778
Collector: "}); google.maps.event.addListener(fishNet2marker272, "click", function (e) { zz272.open(map, this); }); var myLatLng = new google.maps.LatLng(35.4243,-80.7651); var fishNet2marker273 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker273.position); fishnetmarkers.push(fishNet2marker273); var zz273 = new google.maps.InfoWindow({content: "Date Collected: 08/13/1997
Location: 35.4243, -80.7651
Collector: "}); google.maps.event.addListener(fishNet2marker273, "click", function (e) { zz273.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0059,-80.302); var fishNet2marker274 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker274.position); fishnetmarkers.push(fishNet2marker274); var zz274 = new google.maps.InfoWindow({content: "Date Collected: 04/27/2011
Location: 36.0059, -80.302
Collector: "}); google.maps.event.addListener(fishNet2marker274, "click", function (e) { zz274.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0458,-80.3542); var fishNet2marker275 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker275.position); fishnetmarkers.push(fishNet2marker275); var zz275 = new google.maps.InfoWindow({content: "Date Collected: 04/27/2011
Location: 36.0458, -80.3542
Collector: "}); google.maps.event.addListener(fishNet2marker275, "click", function (e) { zz275.open(map, this); }); var myLatLng = new google.maps.LatLng(35.475,-80.7796); var fishNet2marker276 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker276.position); fishnetmarkers.push(fishNet2marker276); var zz276 = new google.maps.InfoWindow({content: "Date Collected: 05/10/2011
Location: 35.475, -80.7796
Collector: "}); google.maps.event.addListener(fishNet2marker276, "click", function (e) { zz276.open(map, this); }); var myLatLng = new google.maps.LatLng(35.3263,-80.7734); var fishNet2marker277 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker277.position); fishnetmarkers.push(fishNet2marker277); var zz277 = new google.maps.InfoWindow({content: "Date Collected: 05/10/2011
Location: 35.3263, -80.7734
Collector: "}); google.maps.event.addListener(fishNet2marker277, "click", function (e) { zz277.open(map, this); }); var myLatLng = new google.maps.LatLng(36.0531,-80.3695); var fishNet2marker278 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker278.position); fishnetmarkers.push(fishNet2marker278); var zz278 = new google.maps.InfoWindow({content: "Date Collected: 06/14/2011
Location: 36.0531, -80.3695
Collector: "}); google.maps.event.addListener(fishNet2marker278, "click", function (e) { zz278.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7655,-79.9926); var fishNet2marker279 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker279.position); fishnetmarkers.push(fishNet2marker279); var zz279 = new google.maps.InfoWindow({content: "Date Collected: 06/20/2011
Location: 35.7655, -79.9926
Collector: "}); google.maps.event.addListener(fishNet2marker279, "click", function (e) { zz279.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9855,-79.0149); var fishNet2marker280 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker280.position); fishnetmarkers.push(fishNet2marker280); var zz280 = new google.maps.InfoWindow({content: "Date Collected: 05/17/1956
Location: 35.9855, -79.0149
Collector: "}); google.maps.event.addListener(fishNet2marker280, "click", function (e) { zz280.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9772,-78.5739); var fishNet2marker281 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker281.position); fishnetmarkers.push(fishNet2marker281); var zz281 = new google.maps.InfoWindow({content: "Date Collected: 04/09/1950
Location: 35.9772, -78.5739
Collector: "}); google.maps.event.addListener(fishNet2marker281, "click", function (e) { zz281.open(map, this); }); var myLatLng = new google.maps.LatLng(35.861,-79.0098); var fishNet2marker282 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker282.position); fishnetmarkers.push(fishNet2marker282); var zz282 = new google.maps.InfoWindow({content: "Date Collected: 03/17/1955
Location: 35.861, -79.0098
Collector: "}); google.maps.event.addListener(fishNet2marker282, "click", function (e) { zz282.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9728,-78.6555); var fishNet2marker283 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker283.position); fishnetmarkers.push(fishNet2marker283); var zz283 = new google.maps.InfoWindow({content: "Date Collected: 03/10/1979
Location: 35.9728, -78.6555
Collector: "}); google.maps.event.addListener(fishNet2marker283, "click", function (e) { zz283.open(map, this); }); var myLatLng = new google.maps.LatLng(36.1146,-81.4648); var fishNet2marker284 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker284.position); fishnetmarkers.push(fishNet2marker284); var zz284 = new google.maps.InfoWindow({content: "Date Collected: 06/25/2013
Location: 36.1146, -81.4648
Collector: "}); google.maps.event.addListener(fishNet2marker284, "click", function (e) { zz284.open(map, this); }); var myLatLng = new google.maps.LatLng(35.0497,-78.8703); var fishNet2marker285 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker285.position); fishnetmarkers.push(fishNet2marker285); var zz285 = new google.maps.InfoWindow({content: "Date Collected: 06/24/2014
Location: 35.0497, -78.8703
Collector: "}); google.maps.event.addListener(fishNet2marker285, "click", function (e) { zz285.open(map, this); }); var myLatLng = new google.maps.LatLng(35.7742,-79.1201); var fishNet2marker286 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker286.position); fishnetmarkers.push(fishNet2marker286); var zz286 = new google.maps.InfoWindow({content: "Date Collected: 07/12/2014
Location: 35.7742, -79.1201
Collector: "}); google.maps.event.addListener(fishNet2marker286, "click", function (e) { zz286.open(map, this); }); var myLatLng = new google.maps.LatLng(35.9234,-79.0513); var fishNet2marker287 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker287.position); fishnetmarkers.push(fishNet2marker287); var zz287 = new google.maps.InfoWindow({content: "Date Collected: 04/26/2014
Location: 35.9234, -79.0513
Collector: "}); google.maps.event.addListener(fishNet2marker287, "click", function (e) { zz287.open(map, this); }); var myLatLng = new google.maps.LatLng(35.303492,-80.594637); var fishNet2marker288 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker288.position); fishnetmarkers.push(fishNet2marker288); var zz288 = new google.maps.InfoWindow({content: "Date Collected: 04/22/1967
Location: 35.303492, -80.594637
Collector: Gilbert, Carter; Yerger, R; Swift, Camm"}); google.maps.event.addListener(fishNet2marker288, "click", function (e) { zz288.open(map, this); }); var myLatLng = new google.maps.LatLng(35.678904,-79.290027); var fishNet2marker289 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker289.position); fishnetmarkers.push(fishNet2marker289); var zz289 = new google.maps.InfoWindow({content: "Date Collected: 04/14/1977
Location: 35.678904, -79.290027
Collector: Burgess, George; et al."}); google.maps.event.addListener(fishNet2marker289, "click", function (e) { zz289.open(map, this); }); var myLatLng = new google.maps.LatLng(35.959023,-78.680125); var fishNet2marker290 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker290.position); fishnetmarkers.push(fishNet2marker290); var zz290 = new google.maps.InfoWindow({content: "Date Collected: 04/13/1977
Location: 35.959023, -78.680125
Collector: Gilbert, Carter; et al."}); google.maps.event.addListener(fishNet2marker290, "click", function (e) { zz290.open(map, this); }); var myLatLng = new google.maps.LatLng(36.319248,-79.225445); var fishNet2marker291 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker291.position); fishnetmarkers.push(fishNet2marker291); var zz291 = new google.maps.InfoWindow({content: "Date Collected: 07/23/1978
Location: 36.319248, -79.225445
Collector: Rohde, Fred; Ross, Stephen"}); google.maps.event.addListener(fishNet2marker291, "click", function (e) { zz291.open(map, this); }); var myLatLng = new google.maps.LatLng(35.303492,-80.594637); var fishNet2marker292 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker292.position); fishnetmarkers.push(fishNet2marker292); var zz292 = new google.maps.InfoWindow({content: "Date Collected: 04/22/1967
Location: 35.303492, -80.594637
Collector: Yerger, Ralph; et al."}); google.maps.event.addListener(fishNet2marker292, "click", function (e) { zz292.open(map, this); }); var myLatLng = new google.maps.LatLng(35.504039,-80.7364); var fishNet2marker293 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker293.position); fishnetmarkers.push(fishNet2marker293); var zz293 = new google.maps.InfoWindow({content: "Date Collected: 05/09/1988
Location: 35.504039, -80.7364
Collector: Menhinick, Edward; A, M; Menhinick, P"}); google.maps.event.addListener(fishNet2marker293, "click", function (e) { zz293.open(map, this); }); var myLatLng = new google.maps.LatLng(35.436874,-80.697419); var fishNet2marker294 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker294.position); fishnetmarkers.push(fishNet2marker294); var zz294 = new google.maps.InfoWindow({content: "Date Collected: 05/07/1988
Location: 35.436874, -80.697419
Collector: Menhinick, Edward; A, M; Menhinick, P"}); google.maps.event.addListener(fishNet2marker294, "click", function (e) { zz294.open(map, this); }); var myLatLng = new google.maps.LatLng(35.416736,-80.684067); var fishNet2marker295 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker295.position); fishnetmarkers.push(fishNet2marker295); var zz295 = new google.maps.InfoWindow({content: "Date Collected: 06/11/1988
Location: 35.416736, -80.684067
Collector: Menhinick, Edward; Menhinick, P"}); google.maps.event.addListener(fishNet2marker295, "click", function (e) { zz295.open(map, this); }); var myLatLng = new google.maps.LatLng(35.475608,-80.701189); var fishNet2marker296 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker296.position); fishnetmarkers.push(fishNet2marker296); var zz296 = new google.maps.InfoWindow({content: "Date Collected: 05/12/1988
Location: 35.475608, -80.701189
Collector: Menhinick, Edward; Menhinick, P"}); google.maps.event.addListener(fishNet2marker296, "click", function (e) { zz296.open(map, this); }); var myLatLng = new google.maps.LatLng(35.771721,-80.32676); var fishNet2marker297 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker297.position); fishnetmarkers.push(fishNet2marker297); var zz297 = new google.maps.InfoWindow({content: "Date Collected: 09/22/1940
Location: 35.771721, -80.32676
Collector: Gosline, William A."}); google.maps.event.addListener(fishNet2marker297, "click", function (e) { zz297.open(map, this); }); var myLatLng = new google.maps.LatLng(35.88167,-79.06194); var fishNet2marker298 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker298.position); fishnetmarkers.push(fishNet2marker298); var zz298 = new google.maps.InfoWindow({content: "Date Collected: 09/13/1956
Location: 35.88167, -79.06194
Collector: R.K. Chipman"}); google.maps.event.addListener(fishNet2marker298, "click", function (e) { zz298.open(map, this); }); var myLatLng = new google.maps.LatLng(35.88167,-79.06194); var fishNet2marker299 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker299.position); fishnetmarkers.push(fishNet2marker299); var zz299 = new google.maps.InfoWindow({content: "Date Collected: 09/10/1957
Location: 35.88167, -79.06194
Collector: R.K. Chipman"}); google.maps.event.addListener(fishNet2marker299, "click", function (e) { zz299.open(map, this); }); var myLatLng = new google.maps.LatLng(36.38556,-79.1075); var fishNet2marker300 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker300.position); fishnetmarkers.push(fishNet2marker300); var zz300 = new google.maps.InfoWindow({content: "Date Collected: 06/01/1960
Location: 36.38556, -79.1075
Collector: Philip & Hester"}); google.maps.event.addListener(fishNet2marker300, "click", function (e) { zz300.open(map, this); }); var myLatLng = new google.maps.LatLng(35.1534,-80.53555); var fishNet2marker301 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker301.position); fishnetmarkers.push(fishNet2marker301); var zz301 = new google.maps.InfoWindow({content: "Date Collected: 05/21/2003
Location: 35.1534, -80.53555
Collector: M. F. Cashner, R. E. Blanton"}); google.maps.event.addListener(fishNet2marker301, "click", function (e) { zz301.open(map, this); }); var myLatLng = new google.maps.LatLng(35.30107,-81.08724); var fishNet2marker302 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker302.position); fishnetmarkers.push(fishNet2marker302); var zz302 = new google.maps.InfoWindow({content: "Date Collected: 05/07/2005
Location: 35.30107, -81.08724
Collector: M.F. Cashner and S. Woltmann"}); google.maps.event.addListener(fishNet2marker302, "click", function (e) { zz302.open(map, this); }); var myLatLng = new google.maps.LatLng(35.891508,-79.058789); var fishNet2marker303 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker303.position); fishnetmarkers.push(fishNet2marker303); var zz303 = new google.maps.InfoWindow({content: "Date Collected: 06/11/1971
Location: 35.891508, -79.058789
Collector: Robert W. Griffith, M. Johnson"}); google.maps.event.addListener(fishNet2marker303, "click", function (e) { zz303.open(map, this); }); var myLatLng = new google.maps.LatLng(35.89394,-79.022505); var fishNet2marker304 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker304.position); fishnetmarkers.push(fishNet2marker304); var zz304 = new google.maps.InfoWindow({content: "Date Collected: 03/24/1968
Location: 35.89394, -79.022505
Collector: Robert W. Griffith"}); google.maps.event.addListener(fishNet2marker304, "click", function (e) { zz304.open(map, this); }); var myLatLng = new google.maps.LatLng(36.028245,-79.44052); var fishNet2marker305 = new google.maps.Marker({position: myLatLng,map: map, icon: image2}); bounds.extend(fishNet2marker305.position); fishnetmarkers.push(fishNet2marker305); var zz305 = new google.maps.InfoWindow({content: "Date Collected: 07/19/1967
Location: 36.028245, -79.44052
Collector: Rising, Jim D"}); google.maps.event.addListener(fishNet2marker305, "click", function (e) { zz305.open(map, this); }); var myLatLng = new google.maps.LatLng(36.047094,-79.010802); var NANFAMarker1 = new google.maps.Marker({position: myLatLng,map: map, icon: image3}); nanfamarkers.push(NANFAMarker1); var iww1 = new google.maps.InfoWindow({content: "Location: 36.047094, -79.010802
Collected by Brian Zimmerman on 06/25/2011
Verified by Brian Zimmerman on 12/17/2015
Collection method: 8 seine/hook and line"}); google.maps.event.addListener(NANFAMarker1, "click", function (e) { iww1.open(map, this); }); var bounds = new google.maps.LatLngBounds(); map.data.addListener('addfeature', function (e) { processPoints(e.feature.getGeometry(), bounds.extend, bounds); map.fitBounds(bounds); }); var legend = document.createElement('div'); legend.id = 'legend'; var content = []; content.push('

Overlay provided by FishMap.org

'); legend.innerHTML = content.join(''); legend.index = 1; map.controls[google.maps.ControlPosition.BOTTOM_CENTER].push(legend); }