Questions tagged [geocode]

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.


Useful links


Related tags

756 questions
-2
votes
3 answers

Implementing an address lookup with Google Geocoding API (or similar)

I'd like to add a feature to my website where a customer can enter their postcode, and it automtaically looks up their address with either Google Geocoding or an opensource / Bing equivalent. Has anybody got any sample code or know a good guide…
Darren
  • 7
  • 1
  • 1
  • 3
-2
votes
1 answer

How does google fill in the text inputs in their autocomplete example

I've been trying to figure out how google fills in the text inputs with precise data in their example after you entered an address in their example…
-3
votes
1 answer

How to show multiple markers from a list of names

javascript function loadMap(){ var options = { zoom: 9 }; var map = new…
Newbie
  • 1
  • 1
-3
votes
1 answer

Can you help me reverse geocode a csv file using python?

I found a python code on stack overflow here Reverse geocode, reading .CSV file and TypeError: a float is required I am trying to reverse geocode my own CSV file. I decided to use (Python 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit…
-3
votes
2 answers

Reverse geocoding Problem

my below code doesn't give any result. list_addr = gc.getFromLocation(latitude, longitude, 5); even not returns null value... it behaves like dumb. give me solution for that.
LostGeek
  • 123
  • 13
-3
votes
2 answers

algorithm to find a certain lat long position in a polygon enclosed by lat/long postions or not

I have a set of polygons drawn on google map,now I want to implement the algo that given a postion with certain lat/long in which of the polygon it lies. Note:polygons are also drawn given the lat/long positions using the google maps api So Is there…
1 2 3
50
51