arcgis 0.1.3

Type-safe Rust SDK for the ArcGIS REST API with compile-time guarantees
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Geocoding Service operations.
//!
//! The Geocoding Service converts addresses to geographic coordinates (geocoding),
//! coordinates to addresses (reverse geocoding), and provides autocomplete suggestions
//! for partial addresses.

mod client;
mod types;

pub use client::GeocodeServiceClient;
pub use types::{
    AddressCandidate, BatchGeocodeRecord, BatchGeocodeResponse, BatchLocation, Category, Extent,
    GeocodeAddress, GeocodeResponse, LocationType, ReverseGeocodeResponse, SuggestResponse,
    Suggestion,
};