All Questions
Tagged with google-geocoder or google-geocoding-api
1,644 questions
0
votes
1
answer
50
views
language parameter is not working properly
I am sending the request like this
https://maps.googleapis.com/maps/api/geocode/json?latlng={lat},{lng}&language=en&key={GOOGLE_MAPS_API_KEY}
I am getting the result in English most of the ...
0
votes
2
answers
165
views
Google Geocoding API Error: “API keys with referer restrictions cannot be used with this API”
I am using the Google Geocoding API from my frontend web application.
https://maps.googleapis.com/maps/api/geocode/json?latlng=LAT,LNG&key=MY_API_KEY
For security reasons, I tried to restrict my ...
0
votes
2
answers
255
views
Google geocode API doesn't provide accurate results for a valid usps address
I am using the Google Geocode API to geocode several thousand addresses. I am getting some inaccurate responses and I am trying to figure out why.
An example address is 6288 Route 22, Bernville PA ...
0
votes
0
answers
81
views
Discrepancy between the USPS data attribute on the google API site and the data returned when we call the Google API
API in Use:
We're using the Google Address Validation API(https://developers.google.com/maps/documentation/address-validation/overview), specifically the v1:validateAddress endpoint.
Google's ...
2
votes
2
answers
176
views
Can't enable Google Cloud Platform Geocoder service
When I try to enable the Geocoding API, I receive this error:
Even though I'm not in India (I have checked Google account region, GCP account region to see if there is any incorrect setting).
If I ...
0
votes
0
answers
53
views
Geocoding API not responding fast enough (use Geocoder.configure(:timeout => ...) to set limit). Rails
I have been running into this issue while trying to call Google Maps Api in my demo environment. The api works fine on my production which is odd because they are exactly the same right now
I have set ...
1
vote
0
answers
40
views
Google Geocoding API language parameter not working
I am using Google Geocoding API. I sent this request
https://maps.googleapis.com/maps/api/geocode/json?language=IT&sensor=false&address=Laives+via+Aldo+Moro&components=locality%3ALaives%...
0
votes
1
answer
268
views
`geocoding` Flutter: `locationFromAddress` throws "Unexpected null value"
/// Searches for an address and moves the map
Future<void> _searchAddress() async {
String query = _searchController.text.trim();
if (query.isEmpty) {
debugPrint("Search query ...
1
vote
1
answer
30
views
Modify lat and lng of a store
Can the lat and lng of a store be modified using the Geocoding API?
Through other APIs, I can't achieve what I need.
From what I saw in the documentation, this is not possible with this API, but I'm ...
0
votes
1
answer
45
views
Components Filter in Geocoding Request
The following API request
https://maps.googleapis.com/maps/api/geocode/json?address=Sedanstra%C3%9Fe+9&components=locality%3ABerlin®ion=de&language=de&key=...
yields
{
"results&...
1
vote
1
answer
135
views
Google Maps Geocoding Coordinates Search Problem
I have the dataset.They are like this:
My code is like this:
def get_city(latitude, longitude, api_key):
"""Google Maps Geocoding API to determine the city from coordinates."&...
1
vote
1
answer
62
views
How to wait till all geocode requests (geocoder.geocode.then()) for address is completed?
In Angular Application, I have an array with list of addresses arrayToupdate.. for the complete list, I am making a geocoder.geocode api passing the address. Our aim is to get the lat and lng for all ...
0
votes
0
answers
119
views
Does Google Maps Geocode API return detailed errors on why API calls may fail?
I discovered by chance today in our Google cloud console account that a significant percentage (43%) of all queries to the geocoding API are failing.
I have no idea why though. When I run the tool ...
1
vote
2
answers
448
views
Google Geolocation API - red destination marker
I am learning how to use the Google Geolocation API. I have my key that tells me the latitude and longitude, I get the map of the exact location as in the image. But what I need is the map without the ...
0
votes
0
answers
233
views
Leaflet GeoSearch: Google Provider not working
I'm trying to incorporate search in my map using the Google Provider (I'm using this (Smeijer/Leaflet-GeoSearch) plugin with Leaflet), however I'm not able to make it work.
My code is very direct:
...