var shape = {"title":"Golden Valley Neighborhood in Milwaukee, WI","description":"","tags":"","points":[[43.089606, -88.027605], [43.084943, -88.027572], [43.078633, -88.027515], [43.078665, -88.028815], [43.078627, -88.03459], [43.078627, -88.034677], [43.078625, -88.035388], [43.078512, -88.035388], [43.078468, -88.03538], [43.078421, -88.035347], [43.07839, -88.035304], [43.078368, -88.035261], [43.078202, -88.03498], [43.07802, -88.034703], [43.077695, -88.035122], [43.078073, -88.035726], [43.078341, -88.036762], [43.078615, -88.036766], [43.078618, -88.037797], [43.078788, -88.0378], [43.078844, -88.038631], [43.07949, -88.038797], [43.08219, -88.038814], [43.082192, -88.0383], [43.083703, -88.038285], [43.083696, -88.03764], [43.084037, -88.037638], [43.084041, -88.038285], [43.085078, -88.038281], [43.085075, -88.037634], [43.085182, -88.037633], [43.085184, -88.03828], [43.085626, -88.038275], [43.085633, -88.037622], [43.085842, -88.037628], [43.085853, -88.038274], [43.086724, -88.038271], [43.086722, -88.037625], [43.087652, -88.03762], [43.087661, -88.038142], [43.089126, -88.038141], [43.089613, -88.039376], [43.089606, -88.027605]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(43.089606, -88.027605),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());