1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! Geoprocessing Service.
//!
//! The Geoprocessing Service (GPServer) provides operations for:
//! - **Execute**: Run synchronous geoprocessing tasks
//! - **Submit Job**: Run asynchronous geoprocessing tasks
//! - **Job Management**: Check status, retrieve results, cancel jobs
//!
//! # Example
//!
//! ```no_run
//! use arcgis::{ApiKeyAuth, ArcGISClient, GeoprocessingServiceClient};
//! use std::collections::HashMap;
//!
//! # async fn example() -> arcgis::Result<()> {
//! let auth = ApiKeyAuth::new("YOUR_API_KEY");
//! let client = ArcGISClient::new(auth);
//! let gp_service = GeoprocessingServiceClient::new(
//! "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Elevation/ESRI_Elevation_World/GPServer/ProfileService",
//! &client
//! );
//!
//! // Execute a synchronous geoprocessing task
//! let mut params = HashMap::new();
//! params.insert("InputLineFeatures".to_string(), serde_json::json!({
//! "geometryType": "esriGeometryPolyline",
//! "features": []
//! }));
//!
//! let result = gp_service.execute(params).await?;
//! # Ok(())
//! # }
//! ```
pub use GeoprocessingServiceClient;
pub use ;
pub use ;