Seamless Google Api integrations.
Google Maps, Places, Roads, Search and Translate.
Feel free to contribute, throw questions and report issues. I usually respond fast (24-48 hours).
Do you need support for an additional .Net framework?, let me know.
The library may be consumed, either by using the individual facede implementations or by depdendency injecting the individual api's.
Each api implementation consists of a request and a response. The request has properties reflecting the parameters supported, and the response represents the object model for the returned json.
A few other noteworthy members.
var uri = request.GetUri(); // Gets the full request uri, including query parameters.
var params = request.GetQUeryStringParameters(); // Gets a list of all the added parameters.
response.RawJson // The raw json returned by Google.
response.RawQueryString // The querystring sent to Google when invoking the request.
Each api has a generic facade operation to execute the request and return the response.
The example below, simply populates a request, invokes the facade operation, and recieves the response in return.
TRequest request = new TRequest();
TResponse response = await {Api}.[{SubGroup}].{Action}.QueryAsync<TRequest, TResponse>(request);
See below for a full list of supported Api's and actions.
If injecting the api's as dependencies is preffered register the services during startup, as shown below.
services
.AddGoogleApis();
Then, inject the individual Api's in constructors as needed
public class MyClass
{
private {Api}.[{SubGroup}].{Action} api;
public MyClass({Api}.[{SubGroup}].{Action} api)
{
this.api = api
}
}
See below for a full list of supported Api's and actions.
The following api's are supported.
- Directions (
GoogleMaps.Directions
) - Distance Matrix (
GoogleMaps.DistanceMatrix
) - Elevation (
GoogleMaps.Elevation
) - Geocode
- Place (
GoogleMaps.Geocode.PlaceGeocode
) - Address (
GoogleMaps.Geocode.AddressGeocode
) - Location (reverse) (
GoogleMaps.Geocode.
) - Plus Code (
GoogleMaps.Geocode.LocationGeocode
)
- Place (
- Geolocation (
GoogleMaps.Geolocation.PlusCodeGeocode
) - Roads
- Nearest Roads (
GoogleMaps.Roads.NearestRoads
) - Snap To Roads (
GoogleMaps.Roads.SnapToRoad
) - Speed Limits (
GoogleMaps.Roads.SpeedLimits
)
- Nearest Roads (
- Time Zone
- Street View
- Static Maps
- Place Search
- Find (
GooglePlaces.Search.FindSearch
) - Near By (
GooglePlaces.Search.NearBySearch
) - Text (
GooglePlaces.Search.TextSearch
)
- Find (
- Place Details (
GooglePlaces.Details
) - Place Photos (
GooglePlaces.Photos
) - Place Autocomplete (
GooglePlaces.AutoComplete
) - Query Autocomplete (
GooglePlaces.QueryAutoComplete
)
- Web (
GoogleSearch.WebSearch
) - Image (
GoogleSearch.ImageSearch
) - Video (beta)
- Channels (
GoogleSearch.VideoSearch.Channels
) - Playlists (
GoogleSearch.VideoSearch.Playlists
) - Vidoes (
GoogleSearch.VideoSearch.Vidoes
)
- Channels (
- Detect (
GoogleTranslate.Detect
) - Languages (
GoogleTranslate.Languages
) - Translate (
GoogleTranslate.Translate
)
- MergePolyLine
- EncodePolyLine
- DecodePolyLine
Running the test suite is simple.
The test project stores settings related to your Google subscription (free or paid) in application.default.json
.
Most importantly, the ApiKey
, used to identify the Google subscription.
{
"ApiKey": "",
"SearchEngineId": "",
}
More information about generating a key can be found here: https://console.developers.google.com/