0

I need to draw several arcs in an ArcGIS overlay. I want to make a function where with a location, angle and distance, draw an arc like the attached file.

1

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197

1 Answers1

0

Looks like you should create a new PolygonBuilder, add the center point, then add an EllipticArcSegment.

You then call ToGeometry() on the PolygonBuilder to get the output polygon.

Read the documentation on the EllipticArcSegment constructor to make sure you use the right units for the distances.

Nixta
  • 464
  • 2
  • 10
  • I forget I and using SceneView not MapView. I want to draw it in SceneView . Do you know how? – Francisco Lopez Aug 07 '22 at 17:18
  • I've replied to your follow-up question in Esri Community with some suggestions: https://community.esri.com/t5/arcgis-runtime-sdk-for-net-questions/ellipticarcsegment-in-sceneview/m-p/1200218#M11226 – Nixta Aug 08 '22 at 19:53