geo-coding 0.1.0

Offline reverse geocoder that uses files derived from OSM data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![no_std]

extern crate alloc;

#[cfg(any(feature = "std", test))]
extern crate std;

mod distance;
mod tree;

pub use self::distance::*;
pub use self::tree::*;