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
//! Rust SDK for the [latlng.work](https://latlng.work) geocoding and places API.
//!
//! # Quick start
//!
//! ```no_run
//! use latlng::LatlngClient;
//!
//! #[tokio::main]
//! async fn main() -> latlng::Result<()> {
//! let client = LatlngClient::with_api_key("latlng_xxxxx")?;
//! let result = client.geocode("Eiffel Tower, Paris").await?;
//!
//! if let Some(place) = result.first() {
//! println!("{}, {}", place.lat, place.lon);
//! }
//!
//! Ok(())
//! }
//! ```
//!
//! Use [`LatlngClient::anonymous`] for unauthenticated requests. Anonymous
//! requests are supported, but have lower rate limits.
pub use ;
pub use ;
pub use ;
pub use ;