Packagecom.esri.ags.tasks.supportClasses
Classpublic class DensifyParameters
InheritanceDensifyParameters Inheritance Object

Since : ArcGIS API for Flex 2.0

Input parameters for the densify() method on the GeometryService - contains polygon and optionally lengthUnit, maxSegmentLength and geodesic.

See also

com.esri.ags.tasks.GeometryService.densify()
Densify (Operation) in REST documentation


Public Properties
 PropertyDefined By
  geodesic : Boolean = false
If true, GCS spatial references are used or densify geodesic is to be performed.
DensifyParameters
  geometries : Array
The array of geometries to be densified.
DensifyParameters
  lengthUnit : Number
The length unit of maxSegmentLength, can be any esriUnits constant.
DensifyParameters
  maxSegmentLength : Number
All segments longer than maxSegmentLength are replaced with sequences of lines no longer than maxSegmentLength.
DensifyParameters
Property Detail
geodesicproperty
public var geodesic:Boolean = false

If true, GCS spatial references are used or densify geodesic is to be performed.

The default value is false.

geometriesproperty 
public var geometries:Array

The array of geometries to be densified.

See also

lengthUnitproperty 
public var lengthUnit:Number

The length unit of maxSegmentLength, can be any esriUnits constant. In case not specified, if the SR is PCS, the unit is determined by unit of the SR, otherwise, it is meter.

maxSegmentLengthproperty 
public var maxSegmentLength:Number

All segments longer than maxSegmentLength are replaced with sequences of lines no longer than maxSegmentLength.