var shape = {"title":"Arlington Park Neighborhood in Fort Wayne, IN","description":"","tags":"","points":[[41.135840999999999, -85.023825000000002], [41.132219999999997, -85.023662000000002], [41.132221000000001, -85.023769999999999], [41.132139000000002, -85.028460999999993], [41.129829000000001, -85.028351000000001], [41.129854999999999, -85.026291999999998], [41.128382999999999, -85.026240000000001], [41.128422, -85.023640999999998], [41.128422999999998, -85.023590999999996], [41.128419000000001, -85.023491000000007], [41.122528000000003, -85.023235999999997], [41.122528000000003, -85.023323000000005], [41.122480000000003, -85.025126999999998], [41.122405999999998, -85.025118000000006], [41.122315999999998, -85.028041000000002], [41.122447000000001, -85.028052000000002], [41.122435000000003, -85.030395999999996], [41.122300000000003, -85.030388000000002], [41.12227, -85.031673999999995], [41.121538000000001, -85.031597000000005], [41.121426, -85.031587000000002], [41.121425000000002, -85.031683999999998], [41.121402000000003, -85.032576000000006], [41.121338999999999, -85.035115000000005], [41.121274, -85.037665000000004], [41.123432999999999, -85.037784000000002], [41.123415999999999, -85.038574999999994], [41.124451999999998, -85.040096000000005], [41.124898000000002, -85.040211999999997], [41.125230000000002, -85.040441999999999], [41.125366, -85.040492999999998], [41.126063000000002, -85.040982999999997], [41.126170999999999, -85.041095999999996], [41.126407999999998, -85.041413000000006], [41.12753, -85.041488999999999], [41.128641999999999, -85.041554000000005], [41.128625999999997, -85.042160999999993], [41.128143000000001, -85.042140000000003], [41.128126000000002, -85.042693999999997], [41.128287999999998, -85.042703000000003], [41.128898999999997, -85.042737000000002], [41.130758999999998, -85.042839999999998], [41.134264000000002, -85.043032999999994], [41.134304, -85.042672999999994], [41.134667999999998, -85.042693], [41.134878999999998, -85.041246999999998], [41.134062, -85.041073999999995], [41.134064000000002, -85.039776000000003], [41.132724000000003, -85.039703000000003], [41.132775000000002, -85.037621000000001], [41.134472000000002, -85.037640999999994], [41.134475999999999, -85.036564999999996], [41.135541000000003, -85.036574999999999], [41.135582999999997, -85.036575999999997], [41.135652999999998, -85.036580000000001], [41.135745999999997, -85.030077000000006], [41.135680999999998, -85.030080999999996], [41.135638, -85.030079000000001], [41.134863000000003, -85.030047999999994], [41.134864, -85.028591000000006], [41.135660000000001, -85.028630000000007], [41.135702999999999, -85.028632000000002], [41.135778000000002, -85.028633999999997], [41.135840999999999, -85.023825000000002]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(41.135841, -85.023825),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());