An unofficial Google Maps Platform API for the Rust programming language.
As of version 0.1.0 this crate is expected to work well, work reliably, and have the most important features implemented. There are some creature comforts and specialized APIs not implemented yet.
While an early release, for most people this crate should work fine as is.
``` let directions = DirectionsRequest::new( // Canadian Museum of Nature Location::Address(String::from("240 McLeod St, Ottawa, ON K2P 2R1")), // Canada Science and Technology Museum Location::Address(String::from("1867 St Laurent Blvd, Ottawa, ON K1G 5A3")), GOOGLEAPIKEY ) .withtravelmode(TravelMode::Transit) .witharrivaltime(PrimitiveDateTime::new( Date::tryfromymd(2021, 1, 10).unwrap(), Time::midnight() )) .validate().unwrap() .build() .get();
println!("{:#?}", directions); ```
To do: 1. Geolocation API 2. Places API 3. Roads API 4. Automatic Rate Limiting 5. Retry on Failure 6. Asynchronous