Tagged Questions

3
votes
1answer
752 views

get city name by parsing in iphone sdk

From this url: http://ws.geonames.org/findNearbyPostalCodes?lat=19.0176560&lng=72.8561780 I want is city name that is mumbai can somebody help me?
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
2
votes
1answer
59 views

FINDING STREET ADDRESS

I have a question for the Google maps site. I am a private EMS dispatcher and we do not have expensive programs but I was hoping that there was a answer for me. Does anyone one know of a way to find ...
2
votes
6answers
3k views

Retrieving Postal Code with Google Maps Javascript API V3 Reverse Geocode

I'm trying to submit a query using the postal code to my DB whenever the googlemaps viewport center changes. I know that this can be done with reverse geocoding with something like: ...
2
votes
1answer
278 views

How to make a Google Maps address - like lookup

You've probably all seen the maps.google.com.au address lookup. Start typing into the text box and your address auto completes in the list before you've finished. It also bolds the matching sections ...
2
votes
2answers
1k views

What is the limit for reverse-geocode lookups on iPhone?

I'm trying to find out the limit for reverse-geocode lookups on iPhone, are they per application/per device and how many per day? The doco just states: MKReverseGeocoder Each Map Kit ...
1
vote
0answers
59 views

Google Maps reverse geocoding returns shorter name

I am using reverse geocoding in Google Maps to get an address from a LatLng position. However, the formatted address (formatted_address) returned in the result is shorter than the address that I get ...
1
vote
0answers
212 views

Constructing Intersections from Google Maps API

Problem: I am trying to reverse geocode a lat/long into a closest street intersection using Google Maps API V3. Also, for now, this doesn't have to be super accurate-- as I am just trying to ...
1
vote
0answers
149 views

GoogleMapsError 602: Can't reverse geocode on a lat/lng obtained by geocoding

I'm using the Python Google Maps wrapper (http://py-googlemaps.sourceforge.net/) and trying to get some driving directions. I've got a load of test locations in latitude/longitude pairs which I ...
1
vote
1answer
711 views

Reverse geocode street name and city as text

I have been having some trouble finding a good way to output just the street name and city as text (Infinite Loop, Cupertino shown here) that can be displayed in my iPhone app. This needs to be able ...
0
votes
1answer
21 views

Why isn't my google maps API reverse geocoder showing results?

I am trying to reverse geocode the latitude and longitude of my google maps and show the formatted address of the markers current position in a window when I have finished dragging the marker with ...
0
votes
1answer
32 views

How can I reverse geocode with google maps api?

I am using the following code to display google maps on my website with autocomplete functionality. I would like to be able to reverse geocode using the longitude and latitude and echo the address on ...
0
votes
2answers
263 views

java.io.IOException: Unable to parse response from server at getFromLocationName()

I know the question has been asked frequently before ,but i am unable to get the solution from any answer or search results. I have to solve this issue ASAP .. I am trying to get the latitude and the ...
0
votes
0answers
94 views

Reverse geo coding like google maps in open layers

I wanted to implement address lookup in javascript for Najdi maps or in words Open Layers (I think so..), like in google maps reverse geo coding Also, I was not able to find any api documentation on ...
0
votes
1answer
116 views

How can I change the language of Google Maps on the run?

I wan't to reverse geocode and get the address in two languages arabic and english so I want to get it in one language then change the language of the API and get the address in the other language, as ...
0
votes
1answer
143 views

reverse and forward geocoding within a region

I wish to know which is the best approach to do as said in the title. Somehow, the reverse geocoding provided in the mapkit framework can't seems to provide accurate address(missing postal code etc) ...
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
0answers
92 views

How can i get the nearest significant town or city from google maps?

Is this possible? I have users who will show where they live on a map, if this isn't a large town or city, i'd like to find that and associate this information with the users record. Any idea how to ...
0
votes
1answer
629 views

Reverse Geocode on Client Side (Google Maps V3 API)

How do you do a Reverse Geocode on the clientside using Google Maps V3 API? The forward geocode from address to LatLng is straight forward (code below), but how do you do the same for reverse geocode? ...
0
votes
2answers
703 views

Reverse Geocoding with Google Map API

I'm working on the JavaScript Google Map API (Version3) and more precisely on the reverse geolocation. With the help of the official documentation, I successed to perform the reverse geocoding, I ...
0
votes
1answer
814 views

Address component type in google maps geocoding

this is a part of my geocoding code. I want it to show only country of the selected place, but it shows all address components, My problem is I cant specify the address components object. There is a ...
0
votes
1answer
370 views

Use MKReversegeoCoder with native application

I have used MKReverseGeocoder from iPhone sdk for my application without using mapview of iphone sdk,but my application has map view which i am getting from google api passing Address. But in order ...
0
votes
1answer
443 views

Reverse geocode using MKReverseGeocoder

Google Terms says I can only use reverse geocoding in conjunction with a google map. Is it ok if you first see the address in a uitableviewcell and then on a click see the location in a map (is this ...
0
votes
2answers
1k views

Reverse geocoding with Google Maps API

I have found this code for reverse geocoding: var point = new GLatLng (lat[1],long[1]); var geocoder = new GClientGeocoder(); geocoder.getLocations (point, function(result) { alert (lat[1]+' ...
0
votes
1answer
819 views

How to look up ZIP/Postal Code by City using Google Maps API?

How can I extract a Postal Code or ZIP of a place by giving Google Maps a city on the map? Basically I'm looking for a free verification service for checking completed addresses for accurate ...
-3
votes
1answer
382 views

how can find continent along with country any free services in android

i am working on geocoder find country and city its working fine already i am getting country name dynamically using geocoder is their any chance to get in continent name along with ...