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
47
48
use Error;
use Point;
/// Represents a locator task for geocoding and reverse geocoding.
///
/// # Examples
///
/// ```
/// use arcgis_rust::tasks::locator::LocatorTask;
/// use tokio;
///
/// #[tokio::main]
/// async fn main() {
/// let locator_task = LocatorTask {
/// url: "https://nominatim.openstreetmap.org/search".to_string(),
/// };
///
/// match locator_task.geocode("1600 Amphitheatre Parkway, Mountain View, CA").await {
/// Ok(location) => println!("Location: {:?}", location),
/// Err(e) => println!("Error: {}", e),
/// }
/// }
/// ```