var MyIconClusterContentLayout = ymaps.templateLayoutFactory.createClass("", {
build: function() {
MyIconClusterContentLayou
var parent = this.getParentElement(),
content = "Визиты: ",
geoObjects = this.getData().properties.get('geoObjects');
for (var i = 0; i < geoObjects.length; i++) {
content += geoObjects[i].properties.get('myProp') + ", ";
}
content = '<div style="background-color:w
parent.innerHTML = content;
},
clear: function() {
parent.innerHTML = '';
}
});
не могу понять как убрать метку кластера при открытии его балуна