Клуб API Карт

LoadingObjectManager и properties.iconCaption

Пост в архиве.

При попытке загрузить в LoadingObjectManager точку с preset "Метки с точкой в центре. Подпись в блоке справа" (например 'islands#nightDotIconWithCaption') получаю ошибку:

TypeError: this.getData().properties.get is not a function. (In 'this.getData().properties.get("iconCaption")', 'this.getData().properties.get' is undefined)

Подскажите, пожалуйста, куда копать.

jsonp_callback({
    error: null,
    data: {
        type: 'FeatureCollection',
        features: [
             {
                 type: 'Feature',
                 geometry: {
                     type: 'Point',
                     coordinates: [55, 35]
                 },
                 id: 23,
                 properties: {
                     balloonContent: 'Содержимое балуна метки',
                     iconCaption: 'Содержимое iconCaption',
                     iconContent: 'Содержимое метки'
                 },
                 options: {
                     preset: 'islands#nightDotIconWithCaption'
                 }
             }
        ]
    }
});