Добрый день. Необходимо получить область. Делаю так:
var loc='Россия, Москва';
var gc = ymaps.geocode(loc,{results:1});
gc.then(
function(res){
console.log(res.geoObjects.get(0).geometry.getBoun ds()); // [[55.753676, 37.619899], [55.753676, 37.619899]] } ,function(err){
console.log(err.message);
}
);
т.е. ответ не область, а точка. Как получить область?