0

我在地理编码器外部有一个数组,但是当我想在地理编码器内部使用该数组时,该数组的值未定义

var titles = new Array(<?php echo implode(",",$titles); ?>);
var length = postCode.length;

for (var i = 0; i < length; i++)
{
    geocoder.geocode({'address': postCode[i]}, function(results, status)
    {
        if (status == google.maps.GeocoderStatus.OK) 
        {
            lat2 = results[0].geometry.location.lat();
            lng2 = results[0].geometry.location.lng();
            var Latlng = new google.maps.LatLng(lat2, lng2);

            var marker = new google.maps.Marker({
                              position: Latlng,
                              map: map,
                              title: titles[i], 
                              icon: icon});
            // alert(titles[i]) - all undefined
        }
    }
}
4

2 回答 2

2

你可以做

var titles = <?php echo json_encode($titles); ?>;
于 2013-07-11T03:21:32.740 回答
1

地理编码器是异步的。循环遍历 i 的所有可能值,将 i 设置为未定义的 postCode.length+1。这可以通过函数关闭来解决(但是,根据您拥有的位置数量,您可能会遇到配额或速率限制问题):

function geocodeAddress(index) {
    geocoder.geocode({'address': postCode[index]}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        var lat2 = results[0].geometry.location.lat();
        var lng2 = results[0].geometry.location.lng();
        var Latlng = new google.maps.LatLng(lat2, lng2);
        var marker = new google.maps.Marker({
                           position: Latlng,
                           map: map,
                           title: titles[index], 
                           icon: icon
                         });
     } else { alert("geocode failed:"+status);
   });
}

for(var i = 0; i < length; i++)
{
   geocodeAddress(i);
}
于 2013-07-11T07:36:59.683 回答