Реализовал простейший пример добавления метки через ObjectManager.
И он не работает. Где ошибка?
ymaps.ready(init);
function init () {
var myMap = new ymaps.Map('map', {center: [55.76, 37.64],zoom: 4}),
objectManager = new ymaps.ObjectManager({clusterize: true,gridSize: 32});
ObjectManager.add({type: 'Feature',id: 1,geometry: {type: 'Point',coordinates: [56.23, 34.79]},
properties: {
hintContent: 'Текст всплывающей подсказки',
balloonContent: 'Содержимое балуна'}
});
myMap.geoObjects.add(objectManager);
}