0

我尝试了几种方法来使用地理定位方法获取访问者的国家/地区位置,但我仍然无济于事。

有人可以提供帮助,因为我想获得一个访问者国家并使用 ajax 将其写入数据库。

我当前的代码

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

  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(successFunction, errorFunction);
} 
//Get the latitude and the longitude;
function successFunction(position) {
    var lat = position.coords.latitude;
    var lng = position.coords.longitude;
    codeLatLng(lat, lng)
}

function errorFunction(){
    alert("Geocoder failed");
}

  function initialize() {
    geocoder = new google.maps.Geocoder();



  }

  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) {
      console.log(results)
      var country = results[7].formatted_address;
      $('.location').text(country);
      var dataStrings = 'email=<?php echo $userid;?>&location='+ country;  
      console.log(dataStrinsg);
      $.ajax({
        type: "POST",
        url: "location-update.php",
        data: dataStrings,
        success: function() {
            location.reload();
            }
      });
      return false;
        if (results[1]) {
         //formatted address
        // alert(results[0].formatted_address)
        //find country name
             for (var i=0; i<results[0].address_components.length; i++) {
            for (var b=0;b<results[0].address_components[i].types.length;b++) {

            //there are different types that might hold a city admin_area_lvl_1 usually does in come cases looking for sublocality type will be more appropriate
                if (results[0].address_components[i].types[b] == "administrative_area_level_1") {
                    //this is the object you are looking for
                    city= results[0].address_components[i];
                    break;
                }
            }
        }
        //city data
        alert(city.short_name + " " + city.long_name)


        } else {
          alert("No results found");
        }
      } else {
        alert("Geocoder failed due to: " + status);
      }
    });
  }</script>
4

1 回答 1

0

假设您initalize()在地理编码之前调用(否则geocode将未定义):

您正在results[7]这里访问:

var country = results[7].formatted_address;

...但不能保证results[7]存在。

于 2012-05-02T09:04:59.220 回答