var shape = {"title":"Silver Swan Neighborhood in Milwaukee, WI","description":"","tags":"","points":[[43.124379, -88.035439], [43.124387, -88.03539], [43.126856, -88.021174], [43.124098, -88.017695], [43.124066, -88.017657], [43.119498, -88.012239], [43.119467, -88.02575], [43.119428, -88.032012], [43.119402, -88.032797], [43.119531, -88.033961], [43.119525, -88.034801], [43.120097, -88.035683], [43.123518, -88.040447], [43.124379, -88.035439]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(43.124379, -88.035439),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());