var shape = {"title":"Arnour Fields Neighborhood in Kansas City, MO","description":"","tags":"","points":[[39.000031999999997, -94.603018000000006], [39.000891000000003, -94.602940000000004], [39.001683, -94.602896000000001], [39.002490000000002, -94.602825999999993], [39.003250000000001, -94.602782000000005], [39.004103000000001, -94.602744999999999], [39.004994000000003, -94.602671999999998], [39.005535999999999, -94.602649999999997], [39.006194999999998, -94.602626000000001], [39.006734999999999, -94.602581999999998], [39.007655, -94.602504999999994], [39.008544000000001, -94.602431999999993], [39.009523000000002, -94.602373999999998], [39.009897000000002, -94.602360000000004], [39.010452999999998, -94.602316000000002], [39.010395000000003, -94.601174999999998], [39.010382, -94.600583], [39.010387999999999, -94.600111999999996], [39.010406000000003, -94.599641000000005], [39.010429999999999, -94.599340999999995], [39.010452999999998, -94.599070999999995], [39.010455, -94.598962], [39.010465000000003, -94.598865000000004], [39.010444, -94.598078999999998], [39.010421999999998, -94.597784000000004], [39.010399, -94.597083999999995], [39.010368999999997, -94.596123000000006], [39.010325000000002, -94.595136999999994], [39.010306, -94.594628999999998], [39.010288000000003, -94.594218999999995], [39.010266000000001, -94.593652000000006], [39.010236999999996, -94.593186000000003], [39.009006999999997, -94.593232], [39.008200000000002, -94.593277999999998], [39.007409000000003, -94.593309000000005], [39.006694000000003, -94.593350000000001], [39.005920000000003, -94.593412000000001], [39.005859999999998, -94.593414999999993], [39.005828000000001, -94.593417000000002], [39.005634999999998, -94.593424999999996], [39.004779999999997, -94.593476999999993], [39.003700000000002, -94.593541999999999], [39.003627999999999, -94.593547000000001], [39.003559000000003, -94.593553999999997], [39.001873000000003, -94.593648999999999], [39.001145999999999, -94.593710000000002], [39.000360999999998, -94.593777000000003], [38.999602000000003, -94.593851000000001], [38.999654999999997, -94.595012999999994], [38.999718000000001, -94.596113000000003], [38.999766000000001, -94.596915999999993], [38.999780000000001, -94.597284000000002], [38.999822000000002, -94.598404000000002], [38.999924, -94.600757000000002], [39.000031999999997, -94.603018000000006]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(39.000032, -94.603018),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());