создаю
var objectManagerN = new ymaps.ObjectManager({
clusterize: true,
gridSize: 64
});
добавляю элементы из массива
objectManagerS.add({ type: 'Feature', id: idd++, geometry: {
type: 'Point', coordinates: point.coords },
properties: { adress: point.adr, format: point.fmt, kass: point.ks, plo: point.pl,
hintContent: point.hc, iconContent:point.ic, dz:point.dz }
});
переопределяю свойства меток
objectManagerN.objects.options.set({
preset:'islands#blueStretchyIcon',
balloonContentLayout:ymap
s.templateLayoutFactory.c reateClass( '<div style="color:#333399;"> <h3> $[properties.dz]</h3> </div>' +
'<p><strong>Адрес: </strong> $[properties.adress]</p>' +
'<p><strong>формат:</strong> $[properties.format|неизвестно]</p>'
//'<p>Метрополитен: [if properties.metro]да[else]нет[endif]</p>'
)
});
переопределяю свойства кластера
objectManagerN.clusters.options.set({
preset:'islands#blueClusterIcons',
clusterDisableClickZoom: true,
clusterOpenBalloonOnClick: true,
clusterBalloonPanelMaxMapArea: 0,
clusterBalloonContentLayoutWidth: 350,
clusterBalloonItemContentLayout: customItemContentLayout,
clusterBalloonLeftColumnWidth: 120
});
Иконка меняется, а при щелчке на кластер все равно работает зум несмотря на то что стоит
clusterDisableClickZoom: true,
Подскажите пожалуйста что не так.