The service object that interacts with MapQuest APIs.
var services = new mqgl.Service('KEY');
services.geocode.address({location: 'Denver, CO', ignoreLatLngInput: true})
.then(response => displayResults(response));
The API Key, which is needed to access MapQuest services.
An object containing any of the options described on the Options page.
A new Service object with the properties defined in the options.
Loading...