获取错误使用JavaScript获取当前位置时Geocoder失败

时间:2017-04-04 13:18:02

标签: javascript google-maps

尝试使用Google Maps API获取当前位置时出现以下错误。

错误:

Geocoder failed

我正在解释下面的代码。

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>

function getDefaultLocation(){
            setTimeout(function(){
                var geocoder='';
                geocoder = new google.maps.Geocoder();
                if (navigator.geolocation) {
                    navigator.geolocation.getCurrentPosition(successFunction, errorFunction);
                }
                function successFunction(position) {
                   var lat = position.coords.latitude;
                   var lng = position.coords.longitude;
                   codeLatLng(lat, lng)
                }
                function errorFunction(){
                   console.log("Geocoder failed");
                }
                function codeLatLng(lat, lng){
                    var latlng = new google.maps.LatLng(lat, lng);
                    geocoder.geocode({'latLng': latlng}, function(results, status) {
                    if(status == google.maps.GeocoderStatus.OK){
                        if (results[1]) {
                          var indice=0;
                            for (var j=0; j<results.length; j++){
                              if (results[j].types[0]=='locality'){
                                indice=j;
                                break;
                              }
                              for (var i=0; i<results[j].address_components.length; i++){
                                if (results[j].address_components[i].types[0] == "locality") {
                                  city = results[j].address_components[i];
                                }
                                if(results[j].address_components[i].types[0] == "administrative_area_level_1"){
                                  region = results[j].address_components[i];
                                }
                                if (results[j].address_components[i].types[0] == "country"){
                                  country = results[j].address_components[i];
                                }
                                if(results[j].address_components[i].types[0] == "route"){
                                  locality=results[j].address_components[i];
                                }
                              }
                            }
                           // console.log('final result',city.long_name,region.long_name,country.long_name,locality.long_name);
        var city=city.long_name;
         var country=country.long_name;
        var locality=locality.long_name;

                                    document.getElementById('bindCon').innerHTML=country;                           document.getElementById('bindCit').innerHTML=city;                      document.getElementById('bindloc').innerHTML=locality;
 }else{
    console.log("No results found");
 }
                        }else{
                          console.log("Geocoder failed due to: " + status);
                }
            })
         }
    },5000);
}

以上代码在localhost中正常运行,但在将其放入我的测试网站(http://xxxx.com)时,上述错误即将发生。在这里,我需要获取所有必需的数据。

0 个答案:

没有答案