Crabs
Posted on Flickr 2:11 pm, July 14, 2013 jQuery(document).ready(function(){ var gmap_mda837abd167613e2f4b68c251ecd112c = { positions : { 416 : new google.maps.LatLng( ‘9.880066’, ‘-85.529864’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_mda837abd167613e2f4b68c251ecd112c’ ), { 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_mda837abd167613e2f4b68c251ecd112c.positions ) { gmap_mda837abd167613e2f4b68c251ecd112c.bounds.extend( gmap_mda837abd167613e2f4b68c251ecd112c.positions[m] ); } // Render markers for ( var m in gmap_mda837abd167613e2f4b68c251ecd112c.positions ) { gmap_mda837abd167613e2f4b68c251ecd112c.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_mda837abd167613e2f4b68c251ecd112c.map, position : gmap_mda837abd167613e2f4b68c251ecd112c.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_mda837abd167613e2f4b68c251ecd112c.map.setCenter( gmap_mda837abd167613e2f4b68c251ecd112c.positions[416] ); });
