views:

269

answers:

1

I am using Google Maps, I have a lat-lon for the first point and a street name for the second point.

How can I get Google Maps to search for the street name in the same city as the latlon?

Also, specifying 1234 Some Street, City, State should work as well as 1234 Some Street

+3  A: 

Reverse geocode the lat/long and then use the city, state from the result as the city, state in conjunction with your street address. Here's a sample showing reverse geocoding.

Swingley
Is it possible to do this without manually checking if the destination address has a city / state specified?
DevDevDev