Wpis z mikrobloga

Pomóżcie proszę z js-em :)

Chciałbym aby tablica $return była zwracana, ale w tym przypadku $return nie wydostaje się ze scopa :)
ps nie wiem czemu ale nie działa formatowanie kodu

function codeAddress(address) {
$return = [];
geocoder = new google.maps.Geocoder();
geocoder.geocode( { address: address, language: 'english' }, (function(results, status) {
if (status === google.maps.GeocoderStatus.OK) {
$return = [
results[0].geometry.location.lat(),
results[0].geometry.location.lng()
];
}

else {
$return = null;
}
} ) );

return $return;
}

#javascript #webdev
  • 15