-
Notifications
You must be signed in to change notification settings - Fork 151
API Key
Richard Thombs edited this page Jul 5, 2017
·
3 revisions
Both Google Maps Business keys and also Google Maps API Keys are supported:
GoogleSigned.AssignAllServices(new GoogleSigned("gme-your-client-id", "your-signing-key"));
// Then do as many requests as you like...
var request = new GeocodingRequest { Address="1600 Amphitheatre Parkway", Sensor = false };
var response = GeocodingService.GetResponse(request);
GoogleSigned.AssignAllServices(new GoogleSigned("your-api-key"));
// Then do as many requests as you like...
var request = new GeocodingRequest { Address="1600 Amphitheatre Parkway", Sensor = false };
var response = GeocodingService.GetResponse(request);