ymaps.geocode('Москва Воронцовская улица 22').val(), {
results: 1
}).then(function (res) {
myMap.geoObjects.removeAll();
var firstGeoObject = res.geoObjects.get(0),
coords = firstGeoObject.geometry.getCoordinates(),
bounds = firstGeoObject.properties.get('boundedBy');
myMap.geoObjects.add(firstGeoObject);
myMap.setBounds(bounds, {
checkZoomRange: true
});
});