var shape = {"title":"Sunset Village Neighborhood in Madison, WI","description":"","tags":"","points":[[43.060821, -89.451124], [43.060828, -89.45179], [43.060821, -89.452949], [43.060815, -89.453254], [43.060827, -89.453625], [43.06095, -89.45363], [43.062392, -89.453634], [43.062359, -89.453385], [43.062805, -89.453342], [43.06288, -89.453202], [43.062952, -89.453067], [43.063259, -89.453056], [43.063745, -89.453638], [43.064846, -89.453641], [43.064976, -89.453642], [43.068124, -89.453651], [43.068105, -89.451393], [43.068192, -89.451181], [43.068719, -89.451177], [43.068714, -89.450941], [43.068715, -89.450492], [43.071272, -89.450486], [43.07135, -89.450491], [43.071439, -89.450495], [43.074722, -89.450492], [43.074731, -89.450939], [43.074727, -89.451147], [43.075284, -89.451144], [43.075282, -89.450254], [43.075281, -89.449996], [43.075278, -89.448831], [43.075277, -89.448141], [43.075273, -89.446637], [43.07527, -89.445302], [43.074028, -89.445308], [43.073484, -89.44531], [43.072832, -89.445316], [43.072739, -89.445334], [43.072648, -89.445422], [43.072393, -89.445667], [43.072301, -89.445761], [43.072165, -89.445813], [43.072072, -89.445831], [43.071848, -89.445756], [43.071636, -89.445582], [43.071493, -89.445464], [43.071362, -89.445363], [43.071311, -89.445355], [43.071124, -89.445323], [43.069507, -89.445321], [43.069468, -89.445321], [43.069492, -89.446355], [43.069492, -89.446381], [43.068061, -89.446385], [43.06807, -89.447472], [43.067164, -89.447479], [43.065841, -89.44747], [43.065842, -89.447282], [43.0658, -89.446995], [43.065737, -89.446725], [43.065646, -89.446497], [43.065584, -89.446403], [43.065511, -89.446261], [43.06539, -89.446107], [43.065191, -89.445918], [43.064988, -89.445793], [43.064746, -89.445707], [43.064445, -89.445667], [43.064434, -89.44472], [43.064424, -89.444285], [43.064422, -89.444115], [43.06443, -89.443886], [43.064379, -89.443699], [43.064326, -89.443591], [43.064163, -89.443178], [43.064062, -89.442841], [43.064028, -89.44259], [43.06401, -89.442452], [43.064002, -89.442133], [43.064002, -89.441376], [43.064001, -89.440559], [43.064003, -89.440298], [43.062549, -89.440295], [43.060789, -89.440291], [43.060759, -89.440291], [43.060747, -89.440469], [43.060749, -89.441908], [43.060752, -89.443721], [43.060752, -89.444208], [43.060759, -89.444885], [43.060766, -89.445598], [43.060785, -89.447469], [43.060803, -89.449326], [43.060821, -89.451124]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(43.060821, -89.451124),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());