An unofficial Google Maps Platform client for the Rust programming language. This client currently implements the Directions API, Elevation API, Geocoding API, and Time Zone API.
As of version 0.1.0 this crate is expected to work well and have the more important Google Maps features implemented. It should work well because Reqwest and Serde do most of the heavy lifting! While it's an early release, for most people this crate should work fine as is.
I created this crate because I needed several Google Maps Platform features for a project that I'm working on. So, I've decided to spin my library off into a public crate. This is a very small token of gratitude and an attempt to give back to the Rust community. I hope it saves someone out there some work.
``` use google_maps::*;
let directions = DirectionsRequest::new( YOURGOOGLEAPIKEYHERE, // Canadian Museum of Nature Location::Address(String::from("240 McLeod St, Ottawa, ON K2P 2R1")), // Canada Science and Technology Museum Location::LatLng { lat: 45.403509, lng: -75.618904 }, ) .withtravelmode(TravelMode::Transit) .witharrivaltime(PrimitiveDateTime::new( Date::tryfromymd(2020, 1, 20).unwrap(), Time::tryfromhms(13, 00, 0).unwrap() )) .execute().unwrap();
println!("{:#?}", directions); ```
``` use google_maps::*;
let elevation = ElevationRequest::new(YOURGOOGLEAPIKEYHERE) .positional_request(ElevationLocations::LatLngs(vec![ // Denver, Colorado, the "Mile High City" LatLng { lat: 39.7391536, lng: -104.9847034 }, ])) .execute().unwrap();
println!("{:#?}", elevation); ```
``` use google_maps::*;
let location = GeocodingForwardRequest::new(YOURGOOGLEAPIKEYHERE) .with_address("10 Downing Street London") .execute().unwrap();
println!("{:#?}", location); ```
``` use google_maps::*;
let location = GeocodingReverseRequest::new( YOURGOOGLEAPIKEYHERE, // Denver, Colorado, the "Mile High City" LatLng { lat: 39.7391536, lng: -104.9847034 } ) .withresulttype(PlaceType::Locality) .execute().unwrap();
println!("{:#?}", location); ```
``` use google_maps::*;
let timezone = TimeZoneRequest::new( YOURGOOGLEAPIKEYHERE, // St. Vitus Cathedral in Prague, Czechia LatLng { lat: 50.090903, lng: 14.400512 }, PrimitiveDateTime::new( // Tuesday February 15, 2022 Date::tryfromymd(2022, 2, 15).unwrap(), // 6:00:00 pm Time::tryfrom_hms(18, 00, 0).unwrap(), ), ).execute().unwrap();
println!("{:#?}", time_zone); ```