We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f12b9 commit de0c1fbCopy full SHA for de0c1fb
src/locationpicker.jquery.js
@@ -110,6 +110,10 @@
110
var address = GmUtility.addressByFormat(results, gmapContext.settings.addressFormat);
111
gmapContext.locationName = address.formatted_address;
112
gmapContext.addressComponents = GmUtility.address_component_from_google_geocode(address.address_components);
113
+ }else if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT) {
114
+ return setTimeout(function () {
115
+ GmUtility.updateLocationName(gmapContext, callback);
116
+ }, 1000);
117
}
118
if (callback) {
119
callback.call(this, gmapContext);
0 commit comments