Dome
Posted on Instagram 4:26 pm, May 23, 2015 jQuery(document).ready(function(){ var gmap_m694704430c6ff138b14d17341f30643f = { positions : { 624 : new google.maps.LatLng( ‘37.784287474’, ‘-122.406335453’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_m694704430c6ff138b14d17341f30643f’ ), { 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_m694704430c6ff138b14d17341f30643f.positions ) { gmap_m694704430c6ff138b14d17341f30643f.bounds.extend( gmap_m694704430c6ff138b14d17341f30643f.positions[m] ); } // Render markers for ( var m in gmap_m694704430c6ff138b14d17341f30643f.positions ) { gmap_m694704430c6ff138b14d17341f30643f.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_m694704430c6ff138b14d17341f30643f.map, position : gmap_m694704430c6ff138b14d17341f30643f.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_m694704430c6ff138b14d17341f30643f.map.setCenter( gmap_m694704430c6ff138b14d17341f30643f.positions[624] ); });
