-
Notifications
You must be signed in to change notification settings - Fork 151
API Key
francisjavier edited this page Oct 31, 2018
·
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", signType: GoogleSignedType.Business));
// 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);