Hello everyone.
In this sample code can I measure the area of the selected area as Meter square. It is given in acres .
var area = geometryEngine.geodesicArea(polygon, "acres");
if (area < 0) {
var simplifiedPolygon = geometryEngine.simplify(polygon);
if (simplifiedPolygon) {
area = geometryEngine.geodesicArea(simplifiedPolygon, "acres");
}
}