myGeocoder.then(
function (res) {
var coords = res.geoObjects.properties.get('metaDataProperty').GeocoderResponseMetaData.Point.coordinates;
objectManager.add({
type: 'Feature',
id: i,
geometry: {
type: 'Point',
coordinates: [coords[1], coords[0]]
},
properties: {
balloonContent: item['city'],
hintContent: item['city'],
clusterCaption: item['city']
}
});
if (i+1 == cities.length) {
myMap.geoObjects.add(objectManager);
myMap.setBounds(objectManager.getBounds(), {checkZoomRange: true});
}
},
function (err) {
// обработка ошибки
console.error("Не удалось обработать адрес");
}
);