ArcGIS Runtime SDK for iOS: AGSUtilityGeometryTraceResult Class Reference
ArcGIS Runtime SDK for iOS  100.15
AGSUtilityGeometryTraceResult Class Reference

Description

The trace result comprised of a set of AGSGeometry objects representing the network elements identified by the trace.

The AGSUtilityGeometryTraceResult exposes the geometry result with a property for each potential geometry type: AGSMultipoint, AGSPolyline, and AGSPolygon. The geometry for these properties is the union of all geometries of that type returned by the trace. If the result does not include a certain geometry type, the corresponding property will be nil.

Since
100.9
Inheritance diagram for AGSUtilityGeometryTraceResult:
AGSUtilityTraceResult AGSObject

Properties

AGSMultipointmultipoint
 
AGSPolygonpolygon
 
AGSPolylinepolyline
 
NSArray< NSString * > * warnings
 

Property Documentation

◆ multipoint

- (AGSMultipoint*) multipoint
readnonatomicstrong

The AGSMultipoint object that comprise the trace results.

The AGSMultipoint is the union of all point geometries returned by the trace. If the result does not include points, this property will be nil.

Since
100.9

◆ polygon

- (AGSPolygon*) polygon
readnonatomicstrong

The AGSPolygon that comprise the trace results

The AGSPolygon is the union of all polygon geometries returned by the trace. If the result does not include polygons, this property will be nil.

Since
100.9

◆ polyline

- (AGSPolyline*) polyline
readnonatomicstrong

The AGSPolyline that comprise the trace results.

The AGSPolyline is the union of all line geometries returned by the trace. If the result does not include lines, this property will be nil. The result may be a curve, in which case it should be densified.

Since
100.9

◆ warnings

- (NSArray<NSString *>*) warnings
readnonatomiccopyinherited

The list of warnings encountered while performing the trace.

Since
100.6