Сделал так:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
<script type="text/javascript">
function codeAddress(address, fn) {
geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': address}, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
myylocation = results[0].geometry.location;
lat = myylocation.lat();
lng = myylocation.lng();
fn(lat,lng);
}
});
}
var latlng;
codeAddress('moskva', function (){
latlng = lat +','+ lng;
alert(latlng); // тут есть
});
alert(latlng); // тут undefined
Но опять мимо. Вот жеж зраза такая...