День добрый, как получить координаты, и район города (в перспективе разложенный аддрес)
в примере https://tech.yandex.ru/ma
var myGeocoder = ymaps.geocode('Россия, город Москва, Москва, Тверская улица 17');
myGeocoder.then(
function (res) {
var coord = res.geoObjects.get(0).geometry.getCoordinates();
console.log (coord);
console.log (res.geoObjects.get(0).properties.get('metaDataProperty').getAll());
console.log('---');
},
function (err) {
console.log('Ошибка');
}
);