Hello everybody, I am trying to add an arc element to the map, but I have no idea how to do it, I have not found any information about it in the available manuals, please help, there is a method with which I tried to create an arc:
let arc = AGSEllipticArcSegment.createcircularellipticarc(withcenter: AGSPoint(x:0.0, y:0.0, SpatialReference: .wgs84()), radius: 55.8413245857547, startAngle: 0, centralAngle: 180, SpatialReference: .wgs84())
but to display on the map, you need to add this element to the graphics, but do it like this:
let graphic = AGSGraphic(geometry: arc, symbol:fillsymbol, attributes: nil)
is not allowed because AGSEllipticArcSegment does not translate to AGSGeometry if possible, I would like to see an example of how to display a similar thing on a map