Tagged Questions

3
votes
1answer
12k views

Reverse Geocoding With Google Map API And PHP To Get Nearest Location Using Lat,Long coordinates

I need a function to get an nearest address or city from coordinates(lat,long) using google map api reverse geocoding and php... Please give some sample code
1
vote
1answer
248 views

Obtaining street name from postal code - Canada

I would like to know if anyone has been able to map a postal code to a street name in Canada. Canada Post does this in their website through their systems. I tried submitting an AJAX POST request to ...
1
vote
1answer
394 views

Reverse Geocoding; JSON keeps changing based on available data

Hi there I am able to reverse geocode to a location based on lat/long values. But my problem is i just need the country and city name, nothing else. It happens that the json data given by google ...
1
vote
4answers
2k views

reverse geocode a set of co-ordinates

I have sets of co-ordinates in the following format (-33.9,18.6) How do I go about getting the name of the nearest town or Country for those co-ords? I'm guessing it will involve Javascript, ...
0
votes
2answers
46 views

Access a url from webserver without changing php.ini

I want to access google map api for reverse geocoding. I access the url using file_get_contents method. $url = "http://maps.google.com/maps/geo?json&ll&ll=".$lat.",".$long; $data = ...
0
votes
3answers
131 views

Problem in getting contents/ files using file_get_contents from url or Problem in reverse geo coding

I am trying reverse geocode using google api in php script(using xmlrpc).I wrote the following code in my local system its works fine,but when I try in our webserver it fails. function ...
0
votes
3answers
989 views

Returning neighborhood based on address with Google geocoder/API

Is there any way to effectively/accurately pull out a neighborhood within a city based on a passed in address, zip, city, state to the Google Geocoder? Whenever I try to do it via HTTP (ideal ...