var shape = {"title":"Abby Place Villas Neighborhood in Fort Wayne, IN","description":"","tags":"","points":[[41.079224, -85.242617], [41.079236, -85.241678], [41.079921, -85.241688], [41.079945, -85.239121], [41.079956, -85.237999], [41.078499, -85.238008], [41.078493, -85.24092], [41.076131, -85.24093], [41.076134, -85.242605], [41.079224, -85.242617]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(41.079224, -85.242617),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());