I installed this JavaScript project which attempts to obtain the user's geolocation using client-side JavaScript.

https://github.com/codejoust/session.js/

The default mechanism for the location lookup is Google's jsapi feature.

Will Google throttle my app's ability to obtain this information after a certain number of requests?

The function in question looks like this:

gapi_location: function(){
      return function(callback){
        var location = util.get_obj(options.location_cookie);
        if (!location || location.source !== 'google'){
          win.gloader_ready = function() {
            if ("google" in win){
              if (win.google.loader.ClientLocation){
                win.google.loader.ClientLocation.source = "google";
                callback(win.google.loader.ClientLocation);
              } else {
                callback({error: true, source: "google"});
              }
              util.set_cookie(
                options.location_cookie,
                util.package_obj(win.google.loader.ClientLocation),
                options.location_cookie_timeout * 60 * 60 * 1000);
            }}
          util.embed_script("https://www.google.com/jsapi?callback=gloader_ready");
        } else {
          callback(location);
        }}
    },
link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

I think you're not asking about Geocoding, but about location. ClientLocation is deprecated, shouldn't be relied on. I would use HTML5 Geolocation as your first option, as demonstrated in this sample.

link|improve this answer
Also, try looking at using freeipdb's service, unless you'd give them too much load, you will need to register for an API key on their website. See the bottom of the readme. – CodeJoust Jan 21 at 1:39
feedback

From: http://code.google.com/intl/pl-PL/apis/maps/documentation/geocoding/#Limits

Usage Limits Use of the Google Geocoding API is subject to a query limit of 2,500 geolocation requests per day. (User of Google Maps API for Business may perform up to 100,000 requests per day.) This limit is enforced to prevent abuse and/or repurposing of the Geocoding API, and this limit may be changed in the future without notice. Additionally, we enforce a request rate limit to prevent abuse of the service. If you exceed the 24-hour limit or otherwise abuse the service, the Geocoding API may stop working for you temporarily. If you continue to exceed this limit, your access to the Geocoding API may be blocked. Note: the Geocoding API may only be used in conjunction with a Google map; geocoding results without displaying them on a map is prohibited. For complete details on allowed usage, consult the Maps API Terms of Service License Restrictions.

link|improve this answer
That's not what I think the API is using, it's some extra information in their JS loader, it's IP location lookup, not geocoding. – CodeJoust Jan 21 at 1:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.