This question is regarding the google Maps API geocoding, I'm able to geocode an address and show the location, but this works when the address is valid.

When it's not valid(there is an error),right now, I'm showing a smart message which says there is an error retrieving the location, but the requirement is to show the nearest possible location to the entered address.

How do I get the marker on next best location?

here's what I've tried:

Split the address, based on commas, and geocode each substring, and get the marker on the 1st match, but this resulted in some huge errors.

What I'm thinking of doing now is:

geocode the zip-code using yahoo maps API, but the only problem is I don't think it will be close to what the user has entered as his address.

Any solutions?

link|improve this question

76% accept rate
2  
+1 Finding the nearest location of a location you can't find sounds hard :) Giggle! – Mattis May 18 '11 at 19:08
haha, yes, it's very funny what clients expect ! wish I could mail them your comment!:) – Tarun May 18 '11 at 19:11
feedback

2 Answers

up vote 3 down vote accepted

Tarun , i am not sure which google api you are using. But Google geocoding api does allow for partial address searches and returns matches sorted by best fit. So displaying best location should be really simple. Take a look at this link below. It returns xml but you can ask for json by replacing xml in url with json. All you have to do insert your partial address in this url.

http://maps.googleapis.com/maps/api/geocode/xml?address=holly%20hall&sensor=false

So if this url doesnt give you any results, then its probably safe to assume that address doesn't exist. Hope that hepls

link|improve this answer
just started working on it! so, probably missed it while a quick read through the API doc, will give that a try and acknowledge ! :) – Tarun May 18 '11 at 19:16
thanks a lot, it's working when I tried it manually, just need to implement it now ! – Tarun May 18 '11 at 19:25
great! i am glad it worked for you! – Shaunak May 19 '11 at 5:21
cool ! thanks a lot – MrROY Dec 19 '11 at 14:21
feedback

I'm by no means an expert of Google Maps, but I would try something like this:

1). Get the zip code 2). Try to find the street within this zip code

If found, mark the street itself and be happy with that.

link|improve this answer
okay, I'm in India, and I'm not sure if google maps is yet developed(up-to-date) for Indian street addresses ! will give it a try :) thanks for the tip ! – Tarun May 18 '11 at 19:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.