Bouncy Light Bridge
Bouncy Light Bridge
Going over to Brooklyn Bridge Park
Posted on Flickr 4:29 pm, August 29, 2013 jQuery(document).ready(function(){ var gmap_macdd59ef3c403f125a7984b980323fd6 = { positions : { 87 : new google.maps.LatLng( ‘40.700666’, ‘-73.996’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_macdd59ef3c403f125a7984b980323fd6’ ), { 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_macdd59ef3c403f125a7984b980323fd6.positions ) { gmap_macdd59ef3c403f125a7984b980323fd6.bounds.extend( gmap_macdd59ef3c403f125a7984b980323fd6.positions[m] ); } // Render markers for ( var m in gmap_macdd59ef3c403f125a7984b980323fd6.positions ) { gmap_macdd59ef3c403f125a7984b980323fd6.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_macdd59ef3c403f125a7984b980323fd6.map, position : gmap_macdd59ef3c403f125a7984b980323fd6.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_macdd59ef3c403f125a7984b980323fd6.map.setCenter( gmap_macdd59ef3c403f125a7984b980323fd6.positions[87] ); });
