0

我正在尝试根据它的地址在我的地图上删除一个标记,但由于某种原因它不起作用。这一定是我没有看到的明显的东西。即使我确保 m 和 locationsall[i][0] 相同,它也不会进入 deleteMarker 方法中的 if(m==locationsall[i][0]) 。

    //alert(tmp);
    //alert(locationsall[0][0]);

添加到地图代码:

$('#map').show();
    var geocoder = new google.maps.Geocoder();
    var address = document.getElementById("address").value +",  " + document.getElementById("city").value;

    geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
            var lat = results[0].geometry.location.lat();
            var lng = results[0].geometry.location.lng();
            locationsall[counter] = new Array();
            locationsall[counter][0] = address;
            locationsall[counter][1] = lat;
            locationsall[counter][2] = lng;
            var mapOptions = {
                    zoom: 13,
                    center: new google.maps.LatLng(lat, lng),
                    mapTypeId: google.maps.MapTypeId.ROADMAP
            }

    map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
    var i;
    for (i = 0; i < locationsall.length; i++) {  
            locationsall[i][3] = marker = new google.maps.Marker({
            position: new google.maps.LatLng(locationsall[i][1], locationsall[i][2]),
            map: map
            });
            //markersArray.push(marker);
    }
    counter++;
    } else {
        alert("Geocode was not successful for the following reason: " + status);
    }
  });
}

从文本框中检索地址并将其格式化为 '1 main street, city' 的代码

    var tmp = locations.splice(locations.indexOf(location), 1);
    deleteMarker(tmp);

删除标记代码:

function deleteMarker(m){
for (i = 0; i < locationsall.length; i++) { 
     if(m==locationsall[i][0]){
     alert(locationsall[i][0]); 
 alert(locationsall[i][3]);
      locationsall[i][3].setMap(null);
     } 
  }
}
4

1 回答 1

0

当我比较 m 和 locationsall[i][0]; 时,我发现我有一个额外的空间。

该代码现在完美运行。

于 2012-11-05T22:39:05.750 回答