I'm trying to get geocoded addresses from Google maps, but I want to set a condition by which if it does not retrieve some data (e.g. the city name), but it retrieves the others, it assigns as input text values all the details (country, region etc.) and for the empty one it assigns some text as value. I'm doing as follows:
result=results[0].address_components;
for(var i=0;i<result.length;++i) {
if(result[i].types[0]=="locality"){cities.push(result[i].long_name);}
else {cities.push("enter")} }
The problem is that after the first search, which works as expecte, then, for the subsequent searches, it returns "enter" even if for those normally the city name would have been retrieved. Does anyone knows what's wrong with my condition?
cities = [];) on subsequent searches? – Salman A Dec 9 '11 at 20:36returncan be seen. I think the code is incomplete to suggest something. Provide the part when you retrieve information fromcities. – dmitry Dec 12 '11 at 9:08