Questions tagged [google-geocoder]

The Geocoding API is a service that provides geocoding and reverse geocoding of addresses.

The Geocoding API is a service that provides geocoding and reverse geocoding of addresses.

Geocoding is the process of converting addresses (like a street address) into geographic coordinates (like latitude and longitude), which you can use to place markers on a map, or position the map.

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

This service is also available as part of the client-side Google Maps JavaScript API, or for server-side use with the Java Client, Python Client, Go Client and Node.js Client for Google Maps Services.

982 questions
-3
votes
1 answer

SBL-EAI-04116:HTTP Internet Exception during 'Data Send': 'An error occurred in the secure channel support', code: '12157'

Integration Siebel - Google geocoding: the URL requests sent directly from the browser: https://maps.googleapis.com/maps/api/geocode/xml?address=Landsdorf%20Strasse,,Gr%C3%BCnewald,01945,Deutschland&key=API_key where API_key = particular API key…
-3
votes
1 answer

Google Maps geocoding an array on address not working properly - only one marker

I am trying to have a map with multiple markers on it. If I do it with coordinates, it works fine. The problem is I have not the coordinates of all the places. What I certainly have is the address. So I opted for the geocoding. It works fine with…
Aptivus
  • 433
  • 1
  • 8
  • 24
-3
votes
1 answer

What's the best way to control the speed of a loop?

I'm using Google's Geocoder api and I'm hitting the rate limits using the loop below. What's the best approach to slow this down? The results array length varies, but doesn't exceed 50 items. for (var key in data) { var results = data[key]; var…
Paul Dessert
  • 6,363
  • 8
  • 47
  • 74
-3
votes
1 answer

error - System.IndexOutOfRangeException: Index was outside the bounds of the array

I get this error: System.IndexOutOfRangeException: Index was outside the bounds of the array. when running this code: foreach(var row in data) { string strAddr = row.ADDRESS1 + "," + row.CITY + "," + row.ST; GoogleMapsDll.GeoResponse…
-3
votes
1 answer

Return name of place in geocoder result

Is it possible to return the name of the place in the results using google's geocoder? I realize that the documentation doesn't show it as a returned result. How would i go about receiving the name?
-3
votes
1 answer

How to use just some of Geocoded informations

Im trying to change geocoded informations from Schwartmecke 49, 57399 Kirchhundem, Germany to just Schwartmecke 49, Germany , but dont know how. Can anybode help me ? Thanks