Singapore Boats
Posted on Flickr 5:30 pm, December 23, 2006 jQuery(document).ready(function(){ var gmap_m35e6957087b86bdb98372dff6b204c7c = { positions : { 852 : new google.maps.LatLng( ‘1.300394’, ‘103.873157’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_m35e6957087b86bdb98372dff6b204c7c’ ), { 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_m35e6957087b86bdb98372dff6b204c7c.positions ) { gmap_m35e6957087b86bdb98372dff6b204c7c.bounds.extend( gmap_m35e6957087b86bdb98372dff6b204c7c.positions[m] ); } // Render markers for ( var m in gmap_m35e6957087b86bdb98372dff6b204c7c.positions ) { gmap_m35e6957087b86bdb98372dff6b204c7c.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_m35e6957087b86bdb98372dff6b204c7c.map, position : gmap_m35e6957087b86bdb98372dff6b204c7c.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_m35e6957087b86bdb98372dff6b204c7c.map.setCenter( gmap_m35e6957087b86bdb98372dff6b204c7c.positions[852] ); });
