var shape = {"title":"28 Palms Neighborhood in Fremont, CA","description":"","tags":"","points":[[37.52286, -121.987571], [37.52263, -121.98773], [37.52266, -121.98781], [37.52324, -121.989271], [37.52396, -121.99067], [37.5243, -121.99135], [37.52473, -121.99218], [37.52514, -121.99297], [37.52567, -121.99408], [37.52587, -121.99449], [37.52721, -121.99729], [37.52755, -121.99798], [37.52814, -121.99908], [37.52824, -121.99927], [37.5285, -121.99983], [37.52854, -121.999941], [37.52974, -122.00237], [37.53019, -122.002181], [37.53094, -122.00187], [37.53124, -122.001811], [37.53144, -122.00177], [37.53168, -122.00174], [37.53221, -122.00167], [37.53319, -122.00121], [37.53637, -121.998581], [37.53453, -121.99497], [37.534445, -121.994804], [37.533643, -121.99323], [37.53298, -121.99193], [37.5323, -121.9906], [37.53068, -121.98744], [37.52987, -121.98584], [37.52855, -121.98326], [37.52765, -121.98403], [37.52695, -121.98464], [37.52634, -121.98517], [37.52482, -121.986321], [37.5238, -121.98701], [37.52347, -121.9872], [37.52286, -121.987571]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(37.52286, -121.987571),5);
map.addControl(new GSmallMapControl());
var latlngs = [];
for (var i=0; i<shape.points.length; i++)
{
    latlngs[i] = new GLatLng(shape.points[i][0], shape.points[i][1]);
}
var poly = new GPolygon(latlngs, '#ff0000', 3, .8, '#ff0000', .4);
map.addOverlay(poly);
var bounds = poly.getBounds();
map.setZoom(map.getBoundsZoomLevel(bounds));
map.panTo(bounds.getCenter());