Thanksgiving 2012
Posted on Flickr 12:00 pm, November 22, 2012 jQuery(document).ready(function(){ var gmap_m83e7925da6da286e55676a9feb48becd = { positions : { 763 : new google.maps.LatLng( ‘39.080666’, ‘-77.472667’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_m83e7925da6da286e55676a9feb48becd’ ), { mapTypeId: google.maps.MapTypeId.ROADMAP, center: new google.maps.LatLng( 0, 0 ), zoom: 16 // Seems to be a good zoom for a single point } ), markers : {}, }; // end of gmap // Extend the bounds of interest based on our positions for ( var m in gmap_m83e7925da6da286e55676a9feb48becd.positions ) { gmap_m83e7925da6da286e55676a9feb48becd.bounds.extend( gmap_m83e7925da6da286e55676a9feb48becd.positions[m] ); } // Render markers for ( var m in gmap_m83e7925da6da286e55676a9feb48becd.positions ) { gmap_m83e7925da6da286e55676a9feb48becd.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_m83e7925da6da286e55676a9feb48becd.map, position : gmap_m83e7925da6da286e55676a9feb48becd.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_m83e7925da6da286e55676a9feb48becd.map.setCenter( gmap_m83e7925da6da286e55676a9feb48becd.positions[763] ); });
