Всех приветствую. Хочется для каждой точки свою пользователькую иконку. Максимум чего я добился, это смена иконки для всех точек. А хочется разные.
function reloadYandexMap(responseCoords) { myMap.geoObjects.removeAll(); objectManager = new ymaps.ObjectManager({ clusterize: true, gridSize: 32 }); objectManager.objects.options.set({ iconLayout: 'default#image', iconImageHref: '/images/def.png', iconImageSize: [48, 48], iconImageOffset: [-24, -48] }); myMap.geoObjects.add(objectManager); objectManager.add(responseCoords); }
Союственно в responseCoords заходит массив с точками:
{ type: 'FeatureCollection', features: [{ type: 'Feature', id: currentId++, geometry: { type: 'Point', coordinates: [24.34, 65.24] } }, { type: 'Feature', id: currentId++, geometry: { type: 'Point', coordinates: [25.34, 63.24] } } ] }
В features можно добавить options, но оно ни на что не реагирует ;(