var shape = {"title":"Armory Park Neighborhood in Tucson, AZ","description":"","tags":"","points":[[32.219861999999999, -110.970939], [32.219845999999997, -110.968576], [32.219788999999999, -110.968576], [32.219799999999999, -110.967803], [32.219802999999999, -110.967034], [32.219839999999998, -110.966266], [32.219836999999998, -110.965508], [32.219830000000002, -110.964736], [32.219825, -110.963927], [32.219712000000001, -110.963942], [32.218879000000001, -110.963943], [32.217737, -110.96262400000001], [32.217345999999999, -110.962233], [32.216887999999997, -110.962135], [32.214671000000003, -110.96207], [32.214624000000001, -110.960604], [32.214078999999998, -110.96076600000001], [32.213526000000002, -110.96089600000001], [32.212806999999998, -110.96089600000001], [32.210683000000003, -110.96089499999999], [32.210678000000001, -110.961592], [32.210675000000002, -110.962355], [32.210678000000001, -110.96312399999999], [32.210664000000001, -110.963885], [32.210656999999998, -110.964665], [32.210656999999998, -110.965431], [32.210644000000002, -110.968498], [32.211886, -110.96847099999999], [32.211978999999999, -110.96854999999999], [32.213335999999998, -110.96969900000001], [32.217101999999997, -110.9704], [32.218290000000003, -110.970625], [32.219861999999999, -110.970939]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(32.219862, -110.970939),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());