I have a map, the projection is Web Mercator. My web application is going to be calling (via javascript external interface) a function which will receive an object as input like this:// JavaScript var inputObject = { polygon: [ [40.6701, 73.94001], [40.6724, 73.94012], [40.6902, 74.02011] ], title: "My Selected Region" } document.getElementById("myMap").SetSelectedPolygonFunction(inputObject); ...I've already got a graphics layer on the map ("myGraphicsLayer").Now, what I need to do is write this function:// Flex map code // In initialization function: // .... ExternalInterface.addCallback("SetSelectedPolygon", setSelectedPolygon); // ....etc private function setSelectedPolygon(data:Object = null):void { var thePolygon:Polygon = doSomethingOrOtherTo(data.polygon); // What do I do to data.polygon to make this function work? var myGraphic:Graphic = new Graphic(); myGraphic.geometry = thePolygon; myGraphicsLayer.add(myGraphic); }