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
//! Image Service.
//!
//! The Image Service (ImageServer) provides operations for:
//! - **Export**: Export raster images with dynamic rendering
//! - **Identify**: Get pixel values at specific locations
//! - **Sampling**: Sample pixel values along geometries
//! - **Analysis**: Compute histograms and statistics
//! - **Metadata**: Query raster information and catalog
//!
//! # Example
//!
//! ```no_run
//! use arcgis::{ApiKeyAuth, ArcGISClient, ImageServiceClient, ArcGISGeometry, ArcGISPoint};
//!
//! # async fn example() -> arcgis::Result<()> {
//! let auth = ApiKeyAuth::new("YOUR_API_KEY");
//! let client = ArcGISClient::new(auth);
//! let image_service = ImageServiceClient::new(
//! "https://sampleserver6.arcgisonline.com/arcgis/rest/services/NLCDLandCover2001/ImageServer",
//! &client
//! );
//!
//! // Get pixel value at a location
//! let geometry = ArcGISGeometry::Point(ArcGISPoint::new(-120.0, 40.0));
//! let value = image_service.identify(&geometry).await?;
//! # Ok(())
//! # }
//! ```
pub use ImageServiceClient;
pub use ;