100_1622
-34.983877117.298278
Posted on Flickr 2:58 am, April 5, 2008 jQuery(document).ready(function(){ var gmap_mdba6f063bc222c8262b3cc2192cef8ba = { positions : { 619 : new google.maps.LatLng( ‘-34.983877’, ‘117.298278’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_mdba6f063bc222c8262b3cc2192cef8ba’ ), { 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_mdba6f063bc222c8262b3cc2192cef8ba.positions ) { gmap_mdba6f063bc222c8262b3cc2192cef8ba.bounds.extend( gmap_mdba6f063bc222c8262b3cc2192cef8ba.positions[m] ); } // Render markers for ( var m in gmap_mdba6f063bc222c8262b3cc2192cef8ba.positions ) { gmap_mdba6f063bc222c8262b3cc2192cef8ba.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_mdba6f063bc222c8262b3cc2192cef8ba.map, position : gmap_mdba6f063bc222c8262b3cc2192cef8ba.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_mdba6f063bc222c8262b3cc2192cef8ba.map.setCenter( gmap_mdba6f063bc222c8262b3cc2192cef8ba.positions[619] ); });
