var shape = {"title":"10th And Page Neighborhood in Charlottesville, VA","description":"","tags":"","points":[[38.034517, -78.485006], [38.032636, -78.485855], [38.033342, -78.48961], [38.033448, -78.490129], [38.033996, -78.489958], [38.034728, -78.492482], [38.034814, -78.492667], [38.035138, -78.493423], [38.035768, -78.495081], [38.036149, -78.494828], [38.037056, -78.4944], [38.037469, -78.495424], [38.038518, -78.494847], [38.039445, -78.494404], [38.039963, -78.494157], [38.039887, -78.493317], [38.039739, -78.491722], [38.038296, -78.490099], [38.037622, -78.489204], [38.037347, -78.48884], [38.037075, -78.488535], [38.036709, -78.488107], [38.036515, -78.487854], [38.036326, -78.487626], [38.03629, -78.487567], [38.035684, -78.486619], [38.035572, -78.486446], [38.035261, -78.485966], [38.03503, -78.485641], [38.034666, -78.485167], [38.034581, -78.485075], [38.034517, -78.485006]],"author":"admin"};
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(38.034517, -78.485006),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());