geocoder.geocode( { 'address': full_address}, function(results, status) {
lat = results[0].geometry.location.lat();
lng = results[0].geometry.location.lng();
alert(lat); // works perfectly
});
alert(lat); // doesn't return anything
为什么对象外的最后一个警报没有返回任何内容?有人知道怎么修这个东西吗?