1个不稳定版本

0.1.0 2024年7月2日

#27#gps

MIT 许可证

14KB
74

wifilocate

一个通过WiFi热点返回GPS位置的crate。

用法

此crate位于crates.io上,可以通过将wifilocation添加到项目的Cargo.toml依赖中来进行使用。

[dependencies]
wifilocate = "0.1"

此crate需要从Google获取API密钥以使用地理位置API。

在您使用crate时将提示您设置密钥。


## Example

```rust

use wifilocate;

#[tokio::main]
async fn main(){
    println!( "{:?}",
        wifilocate::get_location(wifilocate::get_networks()).await.ok()
     );
}

变更日志

  • 0.1.0 - 初始版本

版权所有 2024 [Brian Vuku]

请参阅LICENSE

依赖项

~10–23MB
~346K SLoC