Inside the island
This was taken from inside one of the islands, looking up. They’re hollow and they have lagoons inside them.
Posted on Flickr 7:07 pm, December 28, 2006 jQuery(document).ready(function(){ var gmap_m3ee687a7ac205b85c55f342753f38f1f = { positions : { 284 : new google.maps.LatLng( ‘8.095005’, ‘98.457927’ ) }, bounds : new google.maps.LatLngBounds(), // empty for now, we’ll dynamically extend it later map : new google.maps.Map( document.getElementById( ‘gmap_m3ee687a7ac205b85c55f342753f38f1f’ ), { 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_m3ee687a7ac205b85c55f342753f38f1f.positions ) { gmap_m3ee687a7ac205b85c55f342753f38f1f.bounds.extend( gmap_m3ee687a7ac205b85c55f342753f38f1f.positions[m] ); } // Render markers for ( var m in gmap_m3ee687a7ac205b85c55f342753f38f1f.positions ) { gmap_m3ee687a7ac205b85c55f342753f38f1f.markers[m] = new google.maps.Marker( { clickable: true, map : gmap_m3ee687a7ac205b85c55f342753f38f1f.map, position : gmap_m3ee687a7ac205b85c55f342753f38f1f.positions[m] } ); } // Redraw map to fit our new marker-based bounds gmap_m3ee687a7ac205b85c55f342753f38f1f.map.setCenter( gmap_m3ee687a7ac205b85c55f342753f38f1f.positions[284] ); });
