610 questions
128
votes
14
answers
185k
views
This IP, site or mobile application is not authorized to use this API key
I am using https://maps.googleapis.com/maps/api/geocode/json? link with server key and user IP to find the latitude and longitude of any address, when I'm trying I find the error as
I have a server ...
11
votes
4
answers
18k
views
Places for Android API deprecated alternative
I was trying to implement the Places API. My code looked like this:
val builder = PlacePicker.IntentBuilder()
startActivityForResult(builder.build(mActivity), PLACE_PICKER_REQUEST)
My maps ...
11
votes
1
answer
10k
views
ApiException: 9003: PLACES_API_ACCESS_NOT_CONFIGURED
I am following the current place tutorial on : Select Current Place and Show Details on a Map
I keep getting the following runtime exception:
com.google.android.gms.common.api.ApiException: 9003:
...
51
votes
4
answers
163k
views
Show Current Location and Nearby Places and Route between two places using Google Maps API in Android
I need to develop an application using Google Maps in Android to locate my current location and need to find nearest location.
(For example: Nearby police station from my current location.)
It ...
24
votes
9
answers
30k
views
Google Places API request denied for Android autocomplete, even with the right api key
I'm trying to make an Autocomplete field which should fetch cities as the user types, by using the Google Places API as described in this tutorial:
https://developers.google.com/places/training/...
10
votes
2
answers
6k
views
How to get a click event when a user clicks a (business) place on the map
I know how to set a click event on a map, and it works fine when clicking random locations. But when I click a business place, Google Maps will display the balloon containing the information about the ...
26
votes
9
answers
34k
views
Android Google Places API, getAutocompletePredictions returns status 'PLACES_API_ACCESS_NOT_CONFIGURED'
I'm having problems with Android Google Places API - auto complete feature.
I use the same key that i used for Android Google Maps API (and in the documentation, it is written this is ok). Here is my ...
15
votes
2
answers
19k
views
Using initMap and initAutocomplete on same html page google maps
I have a webpage where I would like to use both place autocomplete as well as google map with marker. User can search for an address in place autocomplete. Lat-long data for marker comes from DB and ...
53
votes
15
answers
43k
views
Android Place Picker closes immediately after launch
I am developing an android application as part of a project, and am using Google places API to display places of interest based on location. I am using the PlacePicker Inentbuilder to accomplish this.
...
58
votes
8
answers
146k
views
Google Place API - No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access [duplicate]
I am using Google Place API.
What I want to get suggestion of place for type helping.
So, what I have done is-
var Google_Places_API_KEY = "AIzaSyAK08OEC-B2kSyWfSdeCzdIkVnT44bcBwM"; //Get it ...
13
votes
3
answers
4k
views
How to get place description from Google Places API
I am trying to use the Google places API to get information on certain places. I have an
example from Google search:
here of what I am trying to find. I thought that the "types" field of the Places ...
122
votes
3
answers
87k
views
What is the `sensor` parameter for in the Google Places API?
The Google Places API requests have a sensor parameter? How does this parameter affect the results?
26
votes
7
answers
69k
views
How to get 20+ result from Google Places API?
I am developing an app in which I am getting the list of ATM's near by the user. For that I am using Google Places API, but every time it returns 20 result only. I want to get more results. In the API ...
25
votes
4
answers
25k
views
using enableAutoManage() in fragment
Is there another way to connect Google API client?
I use auto complete places and I have to use this code some where in MYFRAGMENT
mGoogleApiClient = new GoogleApiClient.Builder(MainActivity.this)
...
21
votes
2
answers
10k
views
Paging on Google Places API returns status INVALID_REQUEST
I'm using the Google Place API for place search:
https://developers.google.com/places/documentation/search
After the first query of the api, I'm getting the next page by setting the pagetoken. If I ...