1 个不稳定版本

0.0.1 2021年6月8日

#13 in #google-maps

MIT 许可证

1.5MB
997

GMapsStatic

Rust codecov crates.io badge Documentation

开发中...

示例

use GMapsStatic::*;

let map = UrlBuilder::new("YOUR_API_KEY".into(), (400, 300).into())
    .scale(SCALE2)
    .center("Colosseo".into())
    .zoom(STREETS)
    .format(GIF)
    .maptype(HYBRID)
    .region("it")
    .language("it");

println!("{}", map.make_url());

这将生成以下 URL

https://maps.googleapis.com/maps/api/staticmap?size=400x300&center=Colosseo&scale=2&format=gif&maptype=hybrid&language=it&region=it&key=YOUR_API_KEY

A map of the area sorrounding the Coliseum generated with GMapsStatic

依赖项

~8.5MB
~273K SLoC