我对以下功能有疑问:
function geo(address) {
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
return results[0].geometry.location;
}
});
}
它返回我“未定义”。任何帮助都会得到认可。非常感谢!