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
-1
votes
1 answer

is it possible to call "navigator.geolocation.getCurrentPosition(initialize, fail);" only once

wants to call navigator.geolocation.getCurrentPosition(initialize, fail); only once i.e. at the time of initialization. I wants to do:- at the time of initialization Wants to set my Home Position(i.e. My current position). When I start walking…
-1
votes
1 answer

OVER_QUERY_LIMIT Google Geocoding API v3 AJAX

My application gets addresses from a file that is updated every couple of hours and geocodes them and puts them on google maps. Over_query_limit is now being returned even when the application has not been used in days. Some days it geocodes…
user1721803
  • 1,125
  • 2
  • 14
  • 21
-1
votes
1 answer

creating digital signature usining SAS for Google API Geocode

I have key but don't know how can I create digital signatures using SAS. I went through the links provided by google but they show creating digital signatures using other languages. I don't which function/procedure to use in SAS to create digital…
user2704338
  • 89
  • 1
  • 1
  • 9
-1
votes
1 answer

Google API key just stopped working

Today I started getting the 'invalid api key' error from Google, after years of the code working just fine. Started today. Example: This does NOT…
Binary Logic
  • 1,529
  • 2
  • 17
  • 19
-2
votes
1 answer

Alerts when approaching daily quota on Google mapping API (geocoding, places, directions, etc.)

How can I get alerted when we reach a certain percentage of the daily mapping API usage quotas? We want to set up alerts that warn us when we reach 85% of the daily quotas that we set up for Google API usage (i.e. geocoding, places, and directions…
-2
votes
1 answer

google geocoding - get all possible localities for street

Is there any way to look up a Street\Road and get all possible localities (suburbs) for it. I.e. if a long street goes through multiple localities. Can I get a list of all of them? Currently I just get what seems to be the most important locality.
Ian Black
  • 1
  • 1
  • 1
-2
votes
1 answer

Bulk API request for Google geo-coding API

I have a data-set of 16 Millions for which I will send the address etc to Google Geocoding API and get the lat-longs. Right now we are making an API request for POI by POI, I'm wondering if we can do bulk /batch request, where in which I send around…
Vineel
  • 1,630
  • 5
  • 26
  • 47
-2
votes
1 answer

Google api geocoding only get some values

I'm using the google geocoding api. Everything is working fine. However when I search for 1 location I receive way to many information. I only need for example the administrative_area_level_1. Url that I…
Jenssen
  • 1,801
  • 4
  • 38
  • 72
-2
votes
1 answer

Is it possible to only avail Google's Geocoding Serve?

Ever since the new pricing took place, I've been confused with their documentation. I don't know where to see the details about this. (Or I'm not really looking properly, pardon me.) So is it possible to only avail Google's Geocoding Service?…
-2
votes
1 answer

my google maps didn't show up

this is my code if($_POST){ // get latitude, longitude and formatted address $data_arr = geocode($_POST['address']); // if able to geocode the address if($data_arr){ $latitude = $data_arr[0]; $longitude = $data_arr[1]; …
-2
votes
1 answer

Reverse geocoding with Python/GoogleMaps API: How to parse response

I'm attempting to use the Google Maps Geocoding API to find the State associated with a latitude and longitude with a Python script. I have no trouble getting back a response from the server, but when I do, I'm having trouble extracting the…
Pendelluft
  • 99
  • 9
-2
votes
2 answers

Find city in Google Geocoding API

I am using google Geocoding API to store the cities in the DB on demand.I provided an input field for the user to enter their city.I used googles places autocomplete for that. I would like to store the city and its country what ever enter ed in the…
saiyan
  • 512
  • 6
  • 21
-2
votes
1 answer

Combine Geocode with marker clustering

How to use MarkerCluster with geolocations from a database, displaying markers on the map works fine. but I haven't been able to implement marker clustering. Any help would be appreciated var customLabel = {residential: {label: 'R'},commercial:…
-2
votes
1 answer

Google Maps custom marker's icon doesn't load

I tried the solutions from other answers in StackOverflow, but I got no result. When loading the page, the icons of custom markers doesn't load. The icon is in the same directory. Here is the code: Pastebin_link Please help me. Thank you!
-2
votes
1 answer

How many degrees of latitude and meridians of longitude are shown on a google map at each scale/zoom value?

I want to be able to programmatically determine whether a location (given its longitude and latitude) are on a google map currently being displayed. That is to say, if I know the center point of the map (say it has a latitude of 38.3004709 and a…
1 2 3
50
51