- URL:
- https://<root>/Utilities/Geometry/GeometryServer/autoComplete
- Methods:
GET
- Version Introduced:
- 10.0
Description
The auto
operation is performed on a geometry service resource. The auto
operation simplifies the process of constructing new polygons that are adjacent to other polygons. It constructs polygons that fill in the gaps between existing polygons and a set of polylines. This operation calls simplify
on the input polygons
and polylines
. You can provide arguments to the auto
operation as query parameters defined in the following parameters table.
Request parameters
Parameter | Details |
---|---|
| Specifies the array of polygons that provide some boundaries for the new polygons. The spatial reference of the polygons is specified by Syntax
Example:
|
| Specifies an array of polylines that provide the remaining boundaries for new polygons. The spatial reference of the polylines is specified by Syntax
Example:
|
| Specifies the well-known ID (WKID) or a spatial reference JSON object for the input |
| The response format. The default response format is Values: |
Example usage
The following is a sample request URL for auto
that constructs completion lines between two parts of a multipart polygon:
https://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer/autoComplete?sr=4269&polygons=[{"rings":[[[0,0],[110,0],[110,-60],[0,-60],[0,0]],[[120,0],[180,0],[180,-60],[120,-60],[120,0]]]}]&polylines=[{"paths":[[[109,0],[121,0]],[[109,-60],[121,-60]]]}]&f=html
JSON Response syntax
{
"geometries" : [ <geometry1>, <geometry1>, ..., <geometryN> ]
}
JSON Response example
{
"geometries": [
{
"rings": [
[
[
120.00000000000011,
-59.99999999999994
],
[
110.00000000000006,
-59.99999999999994
],
[
110.00000000000006,
5.6843418860808015E-14
],
[
120.00000000000011,
5.6843418860808015E-14
],
[
120.00000000000011,
-59.99999999999994
]
]
],
"spatialReference": {
"wkid": 4269,
"latestWkid": 4269
}
}
]
}