1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::models::geo::geospatial_whole_island::{
    GeospatialLayerId,
};
use crate::{Client, LTAResult};

use super::ClientExt;

pub trait GeoRequests<C: Client + ClientExt> {
    /// Returns the SHP files of the requested geospatial layer
    ///
    /// **Update Freq**: Adhoc
    fn get_geospatial_whole_island(client: &C, id: GeospatialLayerId) -> LTAResult<Vec<String>>;
}