Questions tagged [google-geocoding-api]

The Google Geocoding API is a webservice for the Google Maps API. The Geocoding API provides a direct way to access a geocoder via an HTTP request, though it must be used in conjunction with Google Maps.

Geocoding is the process of converting addresses (like "1600 Amphitheatre Parkway, Mountain View, CA") into geographic coordinates (like latitude 37.423021 and longitude -122.083739), which you can use to place markers or position the map.

Reverse geocoding is the process of converting geographic coordinates into a human-readable address.

The Google Geocoding API provides a direct way to access a these services via an HTTP request.

758 questions
6
votes
1 answer

Google geocoding API security

I am asking this question after extensively reading Google's recommended approach, but I do have a problem with all these approaches, let me explain the situation. I use combination of geolocation and geocoding API to know the approximate state…
6
votes
3 answers

Using my Google Geocoding API key with Python geocoder

I'm a beginner at Python and I've been working to geocode a database using Pandas and Geocoder on Jupyter. Since the df is a little long (around 3000 rows), I'd like to use Google's Geocoding API. I've already created a free key, but I have no idea…
Raphael Hernandes
  • 395
  • 2
  • 5
  • 15
6
votes
7 answers

Google Maps geocoding working from browser but not from PHP server

When I fetch Google Maps Geocoding API from my browser, it's working, but not from my PHP script. Working :…
Hugo H
  • 6,029
  • 5
  • 37
  • 57
6
votes
1 answer

google geocoding api not as accurate as google maps using address

I have many examples where google maps returns the exact location whereas geocoding cannot find an exact match and provides only a close match lat/lon which is no good for my purpose. example: "1729 state road 8, auburn, IN 46706" in google maps…
6
votes
2 answers

Google Geocoding API returns ZERO_RESULTS for web-normalized address

I've seen several questions about getting ZERO_RESULTS for addresses that the user believes to be correct, which were resolved by correcting usage errors (e.g. failure to urlencode the address), or by tweaking the address to a form that google…
6
votes
3 answers

Mapping multiple locations with Google Maps JavaScript API v3 and Geocoding API

I'm using Google Maps JavaScript API v3 to generate a map with multiple locations/markers. I only have the address for these locations, not the coordinates, so I'm using the Geocoding API to get the coordinates. I finally got Google's geocoding to…
6
votes
1 answer

Different results between Android Geocoder and Google Geocoding web service

I am creating an Android application and I need to use the geolocation. I have started by using the Geocoder API from Android (android.location.geocoder) but it causes some issues (timed out waiting for response from server) which seems to be…
G.T.
  • 1,557
  • 1
  • 12
  • 24
6
votes
2 answers

Google Map API Geocode Quota Uplift Not Honored

I Have the need to be able to request 25,000 geocodes through Google map geocode api web service. I understand there is a 2,500 requests per day limit. Google allows the user to submit a request to uplift quota. I submitted a request and got an…
6
votes
1 answer

Google Geocoding API returning wrong address, but Google maps showing correct location

I have been using the Google geocoding API for returning the coordinates of a place using the…
6
votes
1 answer

Google Maps Geocoding API, feature from the API missing in their JS api (?)

The problem is simple, in the documentation for the Geocoding API they say component filtering exists. (Source: https://developers.google.com/maps/documentation/geocoding/) However, if I look at the JS documentation…
6
votes
2 answers

Google places API - How to get regions of a country?

I've looked again and again on the site for this simple question and didn't find an answer I think it is very generic need Let's say that you have two drop down lists One you want to populate with a list of countries, and once you've selected one -…
5
votes
1 answer

Can I restrict google geocoder results by cities and towns?

There are component restrictions for the google geocoding api. admininstrativeArea, country, locality, postalCode, route can I use any of these to filter by city and town? So that I don't get back a country or state? Something like…
chuckd
  • 13,460
  • 29
  • 152
  • 331
5
votes
2 answers

Issue with google geocode API : Getting "partial_match" in response

I am using google Geocode API to get the lat long of particular address. when I am searching for "364 S Side Square, Carlinville, IL 62626, USA" in google search or google maps it gives the accurate pin point on google search result or maps…
user3497034
5
votes
0 answers

Socket hang up using axios or request to get data from google geocoding api

I'm trying to iterate through a list of address and get their lat, lng coordinates via Google Geocoding API. Here is my code using axios list.forEach((item) => { item.address = item.address.replace(/\s{1}/g, '+'); …
5
votes
1 answer

Google Maps Geocoding API usage limit

I'm currently using Google's Maps Geocoding API and, as the documentation informs, it has a limit per day usage of 2500 requests. Is there some service that I can call to check how many requests I already did, or I still can do? I know that in the…
1 2
3
50 51