4th of July, 2013
Posted on Flickr 4:29 pm, July 4, 2013 jQuery(document).ready(function(){ var gmap_mcabc54e104a744ee351b76e273a4f5dd = { positions : { 958 : new google.maps.LatLng( ‘40.717’, ‘-73.945667’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_mcabc54e104a744ee351b76e273a4f5dd’ ), { 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_mcabc54e104a744ee351b76e273a4f5dd.positions ) { gmap_mcabc54e104a744ee351b76e273a4f5dd.bounds.extend( gmap_mcabc54e104a744ee351b76e273a4f5dd.positions[m] ); } // Render markers for ( var m in gmap_mcabc54e104a744ee351b76e273a4f5dd.positions ) { gmap_mcabc54e104a744ee351b76e273a4f5dd.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_mcabc54e104a744ee351b76e273a4f5dd.map, position : gmap_mcabc54e104a744ee351b76e273a4f5dd.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_mcabc54e104a744ee351b76e273a4f5dd.map.setCenter( gmap_mcabc54e104a744ee351b76e273a4f5dd.positions[958] ); });
