Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8877967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T19:35:54+00:00 2026-06-14T19:35:54+00:00

I have developed an android app using Google Map API. When I am using

  • 0

I have developed an android app using Google Map API.
When I am using my home Internet from a local provider, the app is running.

But, when I changed my internet to AT&T , I am getting following error:

Places error-Sorry query limit to google places is reached.

I don’t understand why is this happening. Is there a difference between the 2 internet connections?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T19:35:55+00:00Added an answer on June 14, 2026 at 7:35 pm

    I think you exceed the usage of the google map API. If you exceed the usage of the google map API the response status code will be OVER_QUERY_LIMIT I assume you doing as same as this

    protected void onPostExecute(String file_url) {
                // dismiss the dialog after getting all products
                pDialog.dismiss();
                // updating UI from Background Thread
                runOnUiThread(new Runnable() {
                    public void run() {
                        /**
                         * Updating parsed Places into LISTVIEW
                         * */
                        // Get json response status
                        String status = nearPlaces.status;
    
                        // Check for all possible status
                        if(status.equals("OK")){
                            // Successfully got places details
                            if (nearPlaces.results != null) {
                                // loop through each place
                                for (Place p : nearPlaces.results) {
                                    HashMap<String, String> map = new HashMap<String, String>();
    
                                    // Place reference won't display in listview - it will be hidden
                                    // Place reference is used to get "place full details"
                                    map.put(KEY_REFERENCE, p.reference);
    
                                    // Place name
                                    map.put(KEY_NAME, p.name);
    
                                    // adding HashMap to ArrayList
                                    placesListItems.add(map);
                                }
                                // list adapter
                                ListAdapter adapter = new SimpleAdapter(MainActivity.this, placesListItems,
                                        R.layout.list_item,
                                        new String[] { KEY_REFERENCE, KEY_NAME}, new int[] {
                                                R.id.reference, R.id.name });
    
                                // Adding data into listview
                                lv.setAdapter(adapter);
                            }
                        }
                        else if(status.equals("ZERO_RESULTS")){
                            // Zero results found
                            alert.showAlertDialog(MainActivity.this, "Near Places",
                                    "Sorry no places found. Try to change the types of places",
                                    false);
                        }
                        else if(status.equals("UNKNOWN_ERROR"))
                        {
                            alert.showAlertDialog(MainActivity.this, "Places Error",
                                    "Sorry unknown error occured.",
                                    false);
                        }
                        else if(status.equals("OVER_QUERY_LIMIT"))
                        {
                            alert.showAlertDialog(MainActivity.this, "Places Error",
                                    "Sorry query limit to google places is reached",
                                    false);
                        }
                        else if(status.equals("REQUEST_DENIED"))
                        {
                            alert.showAlertDialog(MainActivity.this, "Places Error",
                                    "Sorry error occured. Request is denied",
                                    false);
                        }
                        else if(status.equals("INVALID_REQUEST"))
                        {
                            alert.showAlertDialog(MainActivity.this, "Places Error",
                                    "Sorry error occured. Invalid Request",
                                    false);
                        }
                        else
                        {
                            alert.showAlertDialog(MainActivity.this, "Places Error",
                                    "Sorry error occured.",
                                    false);
                        }
                    }
                });
    
            }
    

    as you can see in this sample code by Android Hive will get response from google places API and check it after that and if the status is OVER_QUERY_LIMIT the error will be shown is “Places Error Sorry query limit to google places is reached”. You can see it in this section

    else if(status.equals("OVER_QUERY_LIMIT"))
                        {
                            alert.showAlertDialog(MainActivity.this, "Places Error",
                                    "Sorry query limit to google places is reached",
                                    false);
                        }
    

    You can exceed the Google Maps API Web Services usage limits by:

    Sending too many requests per day.
    Sending requests too fast, i.e. too many requests per second.
    Sending requests too fast for too long or otherwise abusing the web service.
    Exceeding other usage limits, e.g. points per request in the Elevation API.

    the above problems can be address by combining two approaches:

    Lowering usage, by optimizing applications to use the web services more efficiently.
    Increasing usage limits, when possible, by purchasing additional allowance for your Maps API for Business license.

    for more information you can see it here-> Google Places API

    if you have any question please feel free to ask in the comment 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have developed my app in android 2.2, and put it on google market
I have developed the android phonegap application using html page and css. But My
I am an android app developer and developed apps using android sdk but now
I have developed a android application using phonegap. I have registered certain recievers which
I have developed a music app for Android. At one stage in the application,
I am new to android development. Recently I have uploaded an android app using
I have developed an android app on which i want to run the robotium
I have developed an Android application using Eclipse which works perfectly on the Android
I have searched through Google, SO and Android developers but I need some further
I have developed one android app Smarter App which I am trying to integrate

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.