0
私は私のアプリのコードのこの部分を使用している「反応-ネイティブジオコーダ」ライブラリ、使用しています:Geocoder.geocodePosition未定義の関数エラー
//reverse - geocoding
var NY = {
lat: 40.7809261,
lng: -73.9637594
};
Geocoder.geocodePosition(NY).then(res => {
// res is an Array of geocoding object (see below)
//location details goes here
})
.catch(err => console.log(err))
しかし、エラーを取得:
をgeocodePostion is undefined function
私は"react-native": "0.31.0", "react-native-geocoder": "^0.4.5"
を使用しており、ライブラリに記載されている設定手順に従っています。
get locationの取得に「Geolocation」https://facebook.github.io/react-native/docs/geolocation.htmlを使用してみませんか? –
エラーメッセージにgeocodePositionのiがありませんが、コードにはそこにあります。 – lucash