Клуб API Карт

geoQuery задание своего изображения отметки при определённом синтаксисе

Пост в архиве.
var map_markers = [
    {
        type: 'Feature',
        properties: {
            balloonContent: 'ул. Советов 128'
        },
        geometry: {
            type: 'Point',
            coordinates: [44.865707, 38.151729],
        }
    }, {
        type: 'Feature',
        properties: {
            balloonContent: 'ул. Астраханская 46'
        },
        geometry: {
            type: 'Point',

            coordinates: [44.889109, 37.316026]
        }
    }
];
posts = ymaps.geoQuery({
    type: 'FeatureCollection',
    features: map_markers
}).addToMap(myMap);

Как при таком синтаксисе я могу задать собственную картинку для отметок?