var shape = {"title":"Garden Homes Neighborhood in Milwaukee, WI","description":"","tags":"","points":[[43.098858999999997, -87.943605000000005], [43.097026999999997, -87.942729], [43.097026, -87.942657999999994], [43.095384000000003, -87.941785999999993], [43.092821000000001, -87.9405], [43.089561000000003, -87.938688999999997], [43.089573000000001, -87.939330999999996], [43.089711000000001, -87.946083000000002], [43.089722999999999, -87.946983000000003], [43.089731, -87.948143000000002], [43.089770999999999, -87.953745999999995], [43.097056000000002, -87.954070000000002], [43.097113, -87.946712000000005], [43.098882000000003, -87.946678000000006], [43.098891999999999, -87.945667], [43.098858999999997, -87.943605000000005]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(43.098859, -87.943605),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());