var shape = {"title":"Amity Neighborhood in New Haven, CT","description":"","tags":"","points":[[41.331248, -72.987304], [41.333049, -72.984996], [41.337387, -72.983253], [41.338433, -72.981213], [41.338768, -72.980447], [41.338924, -72.980178], [41.340104, -72.977649], [41.340103, -72.977289], [41.340103, -72.977213], [41.340144, -72.976663], [41.340713, -72.975113], [41.340889, -72.974831], [41.340979, -72.974644], [41.341042, -72.974456], [41.342116, -72.971447], [41.342506, -72.969834], [41.342074, -72.969498], [41.341353, -72.969451], [41.340834, -72.970841], [41.340297, -72.970514], [41.339609, -72.9701], [41.338775, -72.969879], [41.337922, -72.969368], [41.335775, -72.969148], [41.335911, -72.970053], [41.33569, -72.970069], [41.335491, -72.969968], [41.335999, -72.967964], [41.334899, -72.967158], [41.332697, -72.966348], [41.332195, -72.966261], [41.331573, -72.965895], [41.331473, -72.965888], [41.330624, -72.966326], [41.330502, -72.966031], [41.330374, -72.965614], [41.330361, -72.965403], [41.330374, -72.965288], [41.330413, -72.964309], [41.330401, -72.964136], [41.329727, -72.964533], [41.329273, -72.964787], [41.328861, -72.964985], [41.328849, -72.965084], [41.328832, -72.965237], [41.328795, -72.965216], [41.328514, -72.96523], [41.327593, -72.965284], [41.326889, -72.965318], [41.327139, -72.967217], [41.327237, -72.967943], [41.327293, -72.968034], [41.327244, -72.968169], [41.327269, -72.968336], [41.327284, -72.968492], [41.32733, -72.969108], [41.327331, -72.969197], [41.327331, -72.969211], [41.327335, -72.969525], [41.327333, -72.969562], [41.32732, -72.969871], [41.327303, -72.970148], [41.327298, -72.970268], [41.327198, -72.971441], [41.327177, -72.97177], [41.327154, -72.972192], [41.32715, -72.972388], [41.327172, -72.972797], [41.327183, -72.972907], [41.327196, -72.973014], [41.327208, -72.973139], [41.327234, -72.973304], [41.327255, -72.97342], [41.327268, -72.973474], [41.32736, -72.973836], [41.327567, -72.974523], [41.327927, -72.9757], [41.328022, -72.976046], [41.328324, -72.977099], [41.328341, -72.977168], [41.328414, -72.977432], [41.328702, -72.978481], [41.328862, -72.979045], [41.328922, -72.979215], [41.328995, -72.979511], [41.329103, -72.979889], [41.329824, -72.982729], [41.330086, -72.983713], [41.330142, -72.983927], [41.330315, -72.984556], [41.330547, -72.985347], [41.330638, -72.985653], [41.330841, -72.986195], [41.330861, -72.986242], [41.330879, -72.98629], [41.331248, -72.987304]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(41.331248, -72.987304),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());