ионный 3 родной геокодер.не может найти "проезд", "субфабрика" - PullRequest
0 голосов
/ 11 декабря 2018

Мой код

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 из ответных данных.

...