function UpdateMap(num) {
myMap.removeAllGeoObjects();
link = "updateMap.php?id=" + num;
var http = createRequestObject();
if( http )
{
http.open('get', link);
http.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
http.send();
http.onreadystatechange = function ()
{
if(http.readyState == 4)
{
alert(http.responseText);
}
}
http.send(null);
}
else
{
document.location = link;
}
}
работает только если удалить myMap.removeAllGeoObjects(); Как сделать ,чтобы по клику удалялись все метки? Спасибо.