我有一个非常基本的功能,可以获取用户当前的位置。当我提醒或记录 geoCoder 变量时,我成功获得了一个值。我正在尝试将 geoCoder 值放入我的 JSON 调用中。
function userLocation(location, callback) {
var geoCoder = new google.maps.Geocoder();
geoCoder.geocode({
location: location
}
console.log(geoCoder);
}
var jsonCall;
jsonCall = '/bin/userlocation/locations.' + geoCoder + '.json'
当我运行它时,我得到一个geoCoder is not defined js 错误。我将如何获取 geoCoder 变量的值?我是一个新手,所以代码示例很受欢迎。