提供百度坐标系(bd-09)、火星坐标系(国测局坐标系、gcj02)、WGS84坐标系的相互转换
Add the following to your cargo.toml:
cargo.toml
toml [dependencies] coordtransform-rs = "0.1"
```rust use coordtransform-rs::gcj02towgs84;
println!(gcj02towgs84(113, 25)); ```