Add postcodes

This commit is contained in:
Andras Schmelczer 2026-02-04 21:35:12 +00:00
parent 004948385d
commit ce4c0cc08c
5 changed files with 325 additions and 1 deletions

View file

@ -3,11 +3,15 @@ mod hexagon_stats;
pub(crate) mod hexagons;
mod og_image;
mod pois;
mod postcodes;
pub(crate) mod properties;
mod tiles;
pub use features::{build_features_response, get_features, FeaturesResponse};
pub use hexagon_stats::get_hexagon_stats;
pub use hexagons::get_hexagons;
pub use og_image::get_og_image;
pub use pois::{get_poi_categories, get_pois};
pub use postcodes::get_postcodes;
pub use properties::get_hexagon_properties;
pub use tiles::{get_style, get_tile, init_tile_reader};