The Yandex Maps API documentation tells how to disable this behavior for Clusterer and for individual clusters - but nothing is said about ObjectManager separately. I tried to use manager.clusters.options.set - but either this method does not work, or I do not write the parameter name correctly.
Tried to do this:
var map = new ymaps.Map("map", { center: [64.56572586, 102.06531243], zoom: 3, controls: [], }) var manager = new ymaps.ObjectManager({ clusterize: true, }) manager.clusters.options.set('disableClickZoom', true) manager.clusters.options.set('clusterDisableClickZoom', true) map.geoObjects.add(manager); manager.add([1,2].map(function (index) { return { id: index, type: 'Feature', geometry: { type: 'Point', coordinates: [64.56572586, 102.06531243], } } })) Similar code using Clusterer and GeoObject works, but I would like to use ObjectManager