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

Description

Parameters for geodesicEllipseWithParameters: (AGSGeometryEngine)

This class holds options for the geodesicEllipseWithParameters: (AGSGeometryEngine) operation.

@define{AGSGeodesicEllipseParameters.h, ArcGIS}

Since
100
Inheritance diagram for AGSGeodesicEllipseParameters:
AGSObject

Instance Methods

(instancetype) - initWithAxisDirection:angularUnit:center:linearUnit:maxPointCount:maxSegmentLength:geometryType:semiAxis1Length:semiAxis2Length:
 
(instancetype) - initWithCenter:maxSegmentLength:semiAxisLength:
 
(instancetype) - initWithCenter:semiAxis1Length:semiAxis2Length:
 

Class Methods

(instancetype) + geodesicEllipseParameters
 
(instancetype) + parametersWithAxisDirection:angularUnit:center:linearUnit:maxPointCount:maxSegmentLength:geometryType:semiAxis1Length:semiAxis2Length:
 
(instancetype) + parametersWithCenter:maxSegmentLength:semiAxisLength:
 
(instancetype) + parametersWithCenter:semiAxis1Length:semiAxis2Length:
 

Properties

AGSAngularUnitangularUnit
 
double axisDirection
 
AGSPointcenter
 
AGSGeometryType geometryType
 
AGSLinearUnitlinearUnit
 
NSInteger maxPointCount
 
double maxSegmentLength
 
double semiAxis1Length
 
double semiAxis2Length
 

Method Documentation

◆ geodesicEllipseParameters

+ (instancetype) geodesicEllipseParameters

Creates an AGSGeodesicEllipseParameters object.

Since
100

◆ initWithAxisDirection:angularUnit:center:linearUnit:maxPointCount:maxSegmentLength:geometryType:semiAxis1Length:semiAxis2Length:

- (instancetype) initWithAxisDirection: (double)  axisDirection
angularUnit: (nullable AGSAngularUnit *)  angularUnit
center: (AGSPoint *)  center
linearUnit: (nullable AGSLinearUnit *)  linearUnit
maxPointCount: (NSInteger)  maxPointCount
maxSegmentLength: (double)  maxSegmentLength
geometryType: (AGSGeometryType geometryType
semiAxis1Length: (double)  semiAxis1Length
semiAxis2Length: (double)  semiAxis2Length 

Creates an AGSGeodesicEllipseParameters object.

Parameters
axisDirectionThe direction of the major axis of the ellipse as an angle, in units of angularUnit.
angularUnitThe optional angular unit of measure. If nil, degrees will be assumed.
centerThe center point of the ellipse.
linearUnitThe optional linear unit of measure. If nil, meters will be assumed.
maxPointCountThe maximum number of points permitted in the constructed ellipse.
maxSegmentLengthThe maximum distance between vertices used to construct the ellipse.
geometryTypeThe type of output geometry. The type of geometry must be AGSGeometryTypePolyline, AGSGeometryTypePolygon, or AGSGeometryTypeMultipoint.
semiAxis1LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
semiAxis2LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
Since
100.4

◆ initWithCenter:maxSegmentLength:semiAxisLength:

- (instancetype) initWithCenter: (AGSPoint *)  center
maxSegmentLength: (double)  maxSegmentLength
semiAxisLength: (double)  semiAxisLength 

Creates an AGSGeodesicEllipseParameters object.

Parameters
centerThe center point of the ellipse.
maxSegmentLengthThe maximum distance between vertices used to construct the ellipse.
semiAxisLengthThe length of the semi-major or the semi-minor axis of the ellipse.
Since
100

◆ initWithCenter:semiAxis1Length:semiAxis2Length:

- (instancetype) initWithCenter: (nullable AGSPoint *)  center
semiAxis1Length: (double)  semiAxis1Length
semiAxis2Length: (double)  semiAxis2Length 

Creates an AGSGeodesicEllipseParameters object.

Parameters
centerThe center point of the ellipse.
semiAxis1LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
semiAxis2LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
Since
100.1.1

◆ parametersWithAxisDirection:angularUnit:center:linearUnit:maxPointCount:maxSegmentLength:geometryType:semiAxis1Length:semiAxis2Length:

+ (instancetype) parametersWithAxisDirection: (double)  axisDirection
angularUnit: (nullable AGSAngularUnit *)  angularUnit
center: (AGSPoint *)  center
linearUnit: (nullable AGSLinearUnit *)  linearUnit
maxPointCount: (NSInteger)  maxPointCount
maxSegmentLength: (double)  maxSegmentLength
geometryType: (AGSGeometryType geometryType
semiAxis1Length: (double)  semiAxis1Length
semiAxis2Length: (double)  semiAxis2Length 

Creates an AGSGeodesicEllipseParameters object.

Parameters
axisDirectionThe direction of the major axis of the ellipse as an angle, in the given angularUnit.
angularUnitThe optional angular unit of measure. If nil, degrees are assumed.
centerThe center point of the ellipse.
linearUnitThe optional linear unit of measure. If nil, meters are assumed.
maxPointCountThe maximum number of points permitted in the constructed ellipse.
maxSegmentLengthThe maximum distance between vertices used to construct the ellipse.
geometryTypeThe type of output geometry. The type of geometry must be AGSGeometryTypePolyline, AGSGeometryTypePolygon, or AGSGeometryTypeMultipoint.
semiAxis1LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
semiAxis2LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
Since
100.4

◆ parametersWithCenter:maxSegmentLength:semiAxisLength:

+ (instancetype) parametersWithCenter: (AGSPoint *)  center
maxSegmentLength: (double)  maxSegmentLength
semiAxisLength: (double)  semiAxisLength 

Creates an AGSGeodesicEllipseParameters object.

Parameters
centerThe center AGSPoint of the ellipse.
maxSegmentLengthThe maximum distance between vertices used to construct the ellipse.
semiAxisLengthThe length of the semi-major or the semi-minor axis of the ellipse.
Since
100

◆ parametersWithCenter:semiAxis1Length:semiAxis2Length:

+ (instancetype) parametersWithCenter: (nullable AGSPoint *)  center
semiAxis1Length: (double)  semiAxis1Length
semiAxis2Length: (double)  semiAxis2Length 

Creates an AGSGeodesicEllipseParameters object.

Parameters
centerThe center point of the ellipse.
semiAxis1LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
semiAxis2LengthThe length of the semi-major or semi-minor axis of the ellipse, in the given linearUnit.
Returns
A new geodesic ellipse parameter object.
Since
100.1.1

Property Documentation

◆ angularUnit

- (AGSAngularUnit*) angularUnit
readwritenonatomicstrong

The angular unit of the sectorAngle. The default is AGSAngularUnitIDDegrees.

Since
100

◆ axisDirection

- (double) axisDirection
readwritenonatomicassign

The direction of the longest axis of the ellipse as an angle (in degrees), in AGSGeodesicEllipseParameters::angularUnit.

Since
100

◆ center

- (AGSPoint*) center
readwritenonatomicstrong

The center AGSPoint of the ellipse.

Since
100

◆ geometryType

- (AGSGeometryType) geometryType
readwritenonatomicassign

The type of output geometry created. Acceptable values are AGSMultipoint, AGSPolyline and AGSPolygon. Defaults to AGSGeometryTypePolgon.

Since
100

◆ linearUnit

- (AGSLinearUnit*) linearUnit
readwritenonatomicstrong

The linear units of the lengths maxSegmentLength, semiAxis1Length and semiAxis2Length. The default is AGSLinearUnitIDMeters.

Since
100

◆ maxPointCount

- (NSInteger) maxPointCount
readwritenonatomicassign

The maximum number of points permitted in the constructed ellipse.

Since
100

◆ maxSegmentLength

- (double) maxSegmentLength
readwritenonatomicassign

The maximum distance between vertices used to construct the ellipse.

Since
100

◆ semiAxis1Length

- (double) semiAxis1Length
readwritenonatomicassign

The length of the semi-major or the semi-minor axis of the ellipse.

Since
100

◆ semiAxis2Length

- (double) semiAxis2Length
readwritenonatomicassign

The length of the semi-major or the semi-minor axis of the ellipse. If semiAxis1Length = semiAxis2Length then a geodesic circle is created.

Since
100