Добавляю маршрут на карту:
ymaps.route([
{ type: 'wayPoint', point:point1},{ type: 'wayPoint', point:point2}
], {
mapStateAutoApply: false
}).then(function (route) {
map.geoObjects.add(route);
var points = route.getWayPoints(
points.options.set('iconImageHref', '');
points.get(0).properties.set("iconContent", "");
points.get(1).properties.set("iconContent", "");
}, function (error) {
alert("Возникла ошибка: " + error.message);
}
Но вот удалить никак не получается, подскажите как правильно сделать?