var shape = {"title":"Aggasiz-Harvard Neighborhood in Cambridge, MA","description":"","tags":"","points":[[42.376406, -71.115676], [42.375916, -71.11772], [42.376001, -71.117921], [42.376153, -71.118387], [42.376876, -71.120014], [42.377701, -71.120189], [42.385755, -71.119317], [42.387285, -71.11953], [42.388482, -71.119675], [42.388398, -71.11941], [42.387885, -71.118361], [42.387693, -71.117978], [42.386702, -71.117103], [42.385679, -71.116117], [42.385173, -71.115562], [42.384429, -71.114653], [42.383888, -71.114041], [42.38344, -71.113477], [42.382863, -71.112916], [42.381787, -71.111574], [42.381745, -71.111215], [42.381646, -71.110559], [42.381522, -71.1104], [42.381109, -71.109881], [42.380867, -71.109596], [42.38047, -71.109107], [42.380172, -71.108741], [42.379996, -71.10852], [42.379783, -71.108256], [42.379559, -71.107971], [42.379467, -71.107856], [42.37932, -71.107672], [42.379029, -71.108089], [42.378789, -71.107693], [42.378456, -71.107592], [42.378089, -71.107284], [42.376406, -71.115676]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(42.376406, -71.115676),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());