var shape = {"title":"Arlington Heights Neighborhood in Pittsburgh, PA","description":"","tags":"","points":[[40.417203999999998, -79.965479000000002], [40.417389999999997, -79.965483000000006], [40.417473000000001, -79.964886000000007], [40.418241999999999, -79.963414], [40.419024, -79.963188000000002], [40.419347000000002, -79.962738000000002], [40.420183000000002, -79.962644999999995], [40.420406999999997, -79.962350999999998], [40.420529999999999, -79.962041999999997], [40.420516999999997, -79.961843999999999], [40.420586999999998, -79.961641], [40.420633000000002, -79.961590000000001], [40.419789999999999, -79.960645999999997], [40.419179, -79.961302000000003], [40.418725000000002, -79.960463000000004], [40.419376999999997, -79.960102000000006], [40.418771, -79.959243999999998], [40.418410000000002, -79.959433000000004], [40.418168000000001, -79.959447999999995], [40.417892999999999, -79.959318999999994], [40.417721, -79.958596999999997], [40.414791999999998, -79.958588000000006], [40.414437999999997, -79.958201000000003], [40.413328, -79.958243999999993], [40.413406999999999, -79.959028000000004], [40.413392999999999, -79.959047999999996], [40.412998999999999, -79.958916000000002], [40.413055999999997, -79.959687000000002], [40.413290000000003, -79.960534999999993], [40.414861999999999, -79.960731999999993], [40.414952999999997, -79.961404999999999], [40.415269000000002, -79.96172], [40.415188999999998, -79.962188999999995], [40.415171000000001, -79.962376000000006], [40.415143, -79.962665999999999], [40.415112999999998, -79.963097000000005], [40.415094000000003, -79.963624999999993], [40.415120999999999, -79.963909000000001], [40.415135999999997, -79.964326999999997], [40.415143, -79.964768000000007], [40.415146999999997, -79.964972000000003], [40.415129, -79.965331000000006], [40.415360999999997, -79.965362999999996], [40.415531999999999, -79.965388000000004], [40.416082000000003, -79.965466000000006], [40.416519999999998, -79.965535000000003], [40.416823000000001, -79.965586000000002], [40.417203999999998, -79.965479000000002]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(40.417204, -79.965479),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());