Клуб API Карт

Как правильно удалять все Point с карты ?

Пост в архиве.

 

var clusterer = new ymaps.Clusterer();
clusterer.options.set({
    disableClickZoom: false,
    synchAdd: false,
    icons: clusterIcons,
    numbers: [10],
    balloonHeight: 100,
    balloonSidebarWidth: 50,
    balloonWidth: 100
});
clusterer.add(BaseGeoObjectsArrayObj);
myMapList.geoObjects.add(clusterer);

 

3 комментария
Sergey Konstantinov
28 января 2016, 03:27

myMapList.geoObjects.remove(clusterer);

Не раскрыл всю тему полностью

 

fun... DelPoi()
{
  //удалить все кластера, метки с карты
 NewPoint();
}

fun... NewPoint()
{
 var clusterer = new ymaps.Clusterer();
clusterer.options.set({
    disableClickZoom: false,
    synchAdd: false,
    icons: clusterIcons,
    numbers: [10],
    balloonHeight: 100,
    balloonSidebarWidth: 50,
    balloonWidth: 100
});
clusterer.add(BaseGeoObjectsArrayObj);
myMapList.geoObjects.add(clusterer);
}

спс Решено

 

      myMapList.geoObjects.each(function (geoObject) {        myMapList.geoObjects.remove(geoObject);         });