我正在使用传单在地图上显示标记,当我在click
上marker
时,我得到了lat
和lng
,然后将它们发送到 google maps geocoder 以检索地址名称:
var markerCoords = [];
circle.on('click', function (e) {
var curPos = e.target.getLatLng();
markerCoords.push(curPos.lng);
markerCoords.push(curPos.lat);
geocodeLatLng();
});
var geocoder = new google.maps.Geocoder;
function geocodeLatLng(geocoder) {
var latlng = {lat: parseFloat(markerCoords[1]), lng: parseFloat(markerCoords[0])};
geocoder.geocode({'location': latlng}, function(results, status) {
if (status === 'OK') {
if (results[0]) {
console.log(results[0].formatted_address);
} else {
window.alert('No results found');
}
} else {
window.alert('Geocoder failed due to: ' + status);
}
});
}
但这给了我
Cannot read property 'geocode' of undefined
注意
这行很好
var latlng = {lat: parseFloat(markerCoords[1]), lng: parseFloat(markerCoords[0])};
好像我执行console.log一样,我得到了正确的lat
和lng
答案 0 :(得分:1)
您的代码中有错字。您没有将对地址解析器的引用传递到geocodeLatLng
函数中,因此它在函数内部的null
中:
var markerCoords = [];
circle.on('click', function (e) {
var curPos = e.target.getLatLng();
markerCoords.push(curPos.lng);
markerCoords.push(curPos.lat);
geocodeLatLng(geocoder); // <============================================== **here**
});
var geocoder = new google.maps.Geocoder;
function geocodeLatLng(geocoder) {
var latlng = {lat: parseFloat(markerCoords[1]), lng: parseFloat(markerCoords[0])};
geocoder.geocode({'location': latlng}, function(results, status) {
// ... code to process the result
});
}
答案 1 :(得分:0)
这可能是因为google api尚未加载,您可以尝试在其他脚本之前加载它,以确保在调用api之前检查console.log("google api object is", geocoder)
并检查Geocode以确认google是否已加载。
编辑:您不需要geocoder作为geocodeLatLng函数中的参数,正如@geocodezip指出的那样,如果不传递,则它将是未定义的。因为当变量名相同时,参数将优先于外部作用域。
下面的过程将为您提供用户当前位置的地址,您可以传递任意纬度,经度并获取其地址:-
//getting location address from latitude and longitude with google api
navigator.geolocation.getCurrentPosition(success, error);
function success(position) {
var lat = position.coords.latitude;
var long = position.coords.longitude;
var geocoder = new google.maps.Geocoder;
console.log("google api object is", geocoder)
var latlng = { lat: lat, lng: long };
geocoder.geocode({ 'location': latlng }, function (results, status) {
if (status === 'OK') {
if (results[0]) {
console.log(results[0].formatted_address);// this will be actual full address
} else {
alert('No results found');
}
} else {
alert('Geocoder failed due to: ' + status);
}
});
}
function error(err) {
alert("Allow location services!");
}