Мой код
reverseGeoCoding(lat, lng) {
this.nativeGeocoder.reverseGeocode(lat, lng).then(resp => {
this.name = resp[0].thoroughfare + " ," + resp[0].locality + " ," + resp[0].subLocality + " ," + resp[0].administrativeArea + " ," + resp[0].countryName;
})
}
Моя проблема
У меня проблемы с получением thoroughfare
из ответных данных.