Нашел топик о том как сменить макет вывода иконки кластера. Попробовал - не работает. Почему, понять не могу. Помогите, пожалуйста.
Делаю так:
var clusterLayout = ymaps.templateLayoutFactory.createClass('<div class="map-cluster">!</div>');
var clusterer = new ymaps.Clusterer();
clusterer.createCluster = function (center, geoObjects) {
var cluster = ymaps.Clusterer.prototype
cluster.options.set('layout', clusterLayout);
return cluster;
}
На сколько я понимаю, переопределенный createCluster вызывается при вызове that.clusterer.add()
Почему же тогда не меняется лэйаут?