// This is your shape
var shape={"points":[[-16.654612,178.615723],[-16.625665,178.571777],[-16.64935,178.514099],[-16.678293,178.549805],[-16.715124,178.555298],[-16.738797,178.530579],[-16.707232,178.530579],[-16.733537,178.492126],[-16.820316,178.505859],[-16.794024,178.563538],[-16.815058,178.618469],[-16.862377,178.626709],[-16.920195,178.656921],[-16.996382,178.692627],[-17.006888,178.742065],[-16.985875,178.791504],[-16.954351,178.796997],[-16.904428,178.829956],[-16.85712,178.904114],[-16.883403,178.934326],[-16.896544,178.967285],[-16.922822,179.01123],[-16.912311,179.049683],[-16.883403,179.068909],[-16.830832,179.041443],[-16.799282,179.110107],[-16.746688,179.156799],[-16.725646,179.203491],[-16.704602,179.217224],[-16.701971,179.266663],[-16.741428,179.36554],[-16.772987,179.34082],[-16.812429,179.283142],[-16.815058,179.343567],[-16.791394,179.423218],[-16.799282,179.458923],[-16.794024,179.535828],[-16.788765,179.577026],[-16.767727,179.642944],[-16.730907,179.700623],[-16.738797,179.750061],[-16.741428,179.821472],[-16.765098,179.865417],[-16.775617,179.890137],[-16.754578,179.898376],[-16.754578,179.923096],[-16.717755,179.920349],[-16.691448,179.884644],[-16.659875,179.859924],[-16.512466,179.934082],[-16.483498,179.931335],[-16.47823,179.881897],[-16.517733,179.851685],[-16.551962,179.794006],[-16.583552,179.739075],[-16.628297,179.703369],[-16.659875,179.695129],[-16.701971,179.626465],[-16.736167,179.577026],[-16.762468,179.5578],[-16.744058,179.475403],[-16.515099,179.651184],[-16.454525,179.747314],[-16.306959,179.854431],[-16.272687,179.859924],[-16.212037,179.898376],[-16.222586,179.854431],[-16.227861,179.766541],[-16.201488,179.681396],[-16.238409,179.631958],[-16.275324,179.494629],[-16.333319,179.425964],[-16.380756,179.368286],[-16.425548,179.376526],[-16.422913,179.321594],[-16.412375,179.219971],[-16.470329,178.970032],[-16.533531,178.898621],[-16.591449,178.832703],[-16.630929,178.775024],[-16.678293,178.676147],[-16.654612,178.615723]],"title":"Fiji North Kora Island","notes":"","tags":["fijibits"],"author":"Rakugo"};

// A general-purpose function to return an array of GLatLng objects from an array of [[lat,lng],[lat,lng] . .]
function makeLatLngsFromArray(a){
  var res=[];
  for(var i=0;i<a.length;i++){res[i]=new GLatLng(a[i][0],a[i][1])};
  return res;
}

// map setup
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(40.6897,-95.0446),5);
map.addControl(new GSmallMapControl());

// add the shape as a GPolygoon
var latlngs=makeLatLngsFromArray(shape.points);
var poly=new GPolygon(latlngs, '#ff0000', 3, .8, '#ff0000', .4);
map.addOverlay(poly);