I am trying to draw a circle on a SceneView and believe my geometry is correct. However the circle is not appearing with a Polyline Symbol. It only appears with a MarkerSymbol which not drawing a continuous circle.
let overlay = GraphicsOverlay()
let point = Point(x: 115, y: 22, spatialReference: .wgs84)
let circleParameters = GeodesicEllipseParameters(center: point, linearUnit: LinearUnit.kilometers, maxPointCount: 360, maxSegmentLength: 0.1, semiAxis1Length: 100, semiAxis2Length: 100)
let geodesicEllipse = GeometryEngine.geodesicEllipse(parameters: circleParameters)
let markerSymbol = SimpleMarkerSymbol(style: SimpleMarkerSymbol.Style.circle, color: .white, size: 2)
let lineSymbol = SimpleLineSymbol(style: .solid, color: .blue, width: 8)
let circleGraphic = Graphic(geometry: geodesicEllipse, symbol: markerSymbol)
overlay.addGraphic(circleGraphic)
How can I draw a continuous circle on a SceneView given a center Point and a radius?