Ferry Ride
Posted on Flickr 2:29 pm, May 3, 2010 jQuery(document).ready(function(){ var gmap_m74b696130b6368844a11a8f6337959c9 = { positions : { 400 : new google.maps.LatLng( ‘37.792666’, ‘-122.3905’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_m74b696130b6368844a11a8f6337959c9’ ), { 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_m74b696130b6368844a11a8f6337959c9.positions ) { gmap_m74b696130b6368844a11a8f6337959c9.bounds.extend( gmap_m74b696130b6368844a11a8f6337959c9.positions[m] ); } // Render markers for ( var m in gmap_m74b696130b6368844a11a8f6337959c9.positions ) { gmap_m74b696130b6368844a11a8f6337959c9.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_m74b696130b6368844a11a8f6337959c9.map, position : gmap_m74b696130b6368844a11a8f6337959c9.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_m74b696130b6368844a11a8f6337959c9.map.setCenter( gmap_m74b696130b6368844a11a8f6337959c9.positions[400] ); });
