Hi Erwin Soekianto,
Thanks for your response.
Yes, you are right. I want to make additional network request. Please help me how to do this. I'm trying to generate Buffer geometry using Geometry Engine but it always shows null.
I have imported ArcGISRuntime in FeatureServiceManager.qml and added below code in applyEdits function:
function applyEdits(attributes, callback){
console.log("token when edits", token)
console.log(JSON.stringify(attributes[0].geometry))
var obj = {"adds": JSON.stringify(attributes),
"f": "json"};
var newPolygon = GeometryEngine.buffer(attributes[0].geometry, 5)
console.log(JSON.stringify((newPolygon)))
console.log(newPolygon)
But I'm getting below null values after newPolygon as shown below
Please let me know how to create buffer and send a new network Request for creating buffered polygon. Appreciate your support.
Thanks,
Krish