Есть определенный адрес. Он передается в функцию
function showAddress(address){
geocoder.getLatLng(address,
function(point){
if (!point){
alert(address + " not found");
} else {
geocoder.getLocations(point, ZipAddr);
alert(info);
}
}
);
}
Эта функция получает адрес и обрабатывает ее с помощью geocoder.getLocations(point, ZipAddr);
В функии ZipAddr я получаю:
function ZipAddr(response){
if (!response || response.Status.code != 200){
alert("Status Code:" + response.Status.code);
}else{
...повырезал лишний код, но в итоге у меня есть город, штат и зип, которые записываются в переменную...
var info = city + ", " + state + ", " + zipCode;
...
}
}
}
Как мне вернуть эту переменную в функции showAddress.
Спасибо