如何使用地图反向地理编码?

时间:2018-12-09 17:25:17

标签: javascript jquery google-maps leaflet google-geocoder

我正在使用传单在地图上显示标记,当我在clickmarker时,我得到了latlng ,然后将它们发送到 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一样,我得到了正确的latlng

2 个答案:

答案 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!");
        }