776 questions
3
votes
5
answers
24k
views
How much request is free with geocoding api? [closed]
I want to get the address from latitude/longitude using Google Geocoding API. For that, I want to know, how many no of hit can be done with a free account?
Bellow link showing the 2,500 requests per ...
0
votes
2
answers
144
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 ...
5
votes
2
answers
4k
views
Regions of England in Google Maps API
I have a list of latitude/longitude which point to some cities in England.
For each of these coordinates I want to get the region they belong to.
By region, I mean one of these: https://en.wikipedia....
0
votes
2
answers
80
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
54
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 ...
1
vote
3
answers
586
views
Google Geocoding API Licensing
I'm building an application and I need to get the coordinates based on address, so I'm planning to use the Google Geocoding API. As I read in the Geocoding reference https://developers.google.com/maps/...
0
votes
0
answers
76
views
Getting REQUEST_DENIED error in Android app with Geocoding API
Iβm encountering an issue when trying to use the Google Geocoding API in my Android app. When I make a request, I get the following response:
{
"error_message": "This IP, site or mobile ...
1
vote
1
answer
3k
views
How to store geocoded address information into the database
I have a geocode request that loops through multiple addresses in my data base and returns latitude and longitude as well as other information.
foreach(var row in data){
<script type="...
1
vote
0
answers
26
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
200
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 ...
0
votes
1
answer
31
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
26
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 ...
1
vote
1
answer
2k
views
Keep getting TypeError: Cannot read property 'formatted_address' of undefined
I've created a page where I can paste in addresses in bulk and get them geocoded, done via the Google Geocoding API, and axios. The majority of the addresses get converted into the corresponding ...
1
vote
2
answers
383
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 ...
1
vote
1
answer
116
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."&...