ArcGIS Runtime SDK for iOS
100.15
|
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
.
Properties | |
AGSMultipoint * | multipoint |
AGSPolygon * | polygon |
AGSPolyline * | polyline |
NSArray< NSString * > * | warnings |
|
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
.
|
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
.
|
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.
|
readnonatomiccopyinherited |
The list of warnings encountered while performing the trace.