离子2中反向地理编码的对象

  • 本文关键字:编码 对象 离子 ionic2
  • 更新时间 :
  • 英文 :


当我使用此

this.nativeGeocoder.reverseGeocode(parseFloat(this.myLat),parseFloat( this.myLong))
  .then((result: NativeGeocoderReverseResult) =>
  { console.log('The address is ' + result.street + ' in ' + result.countryCode)

在我获取的构造函数中称为

的函数中

地址为未命名的 in Result.Street 不起作用!

您必须更新结果。它将起作用

这个

this.nativeGeocoder.reverseGeocode(parseFloat(this.myLat),parseFloat( this.myLong))
  .then((result: NativeGeocoderReverseResult) =>
  { console.log('The address is ' + result.street + ' in ' + result.countryCode)

to

this.nativeGeocoder.reverseGeocode(parseFloat(this.myLat),parseFloat( this.myLong))
  .then((result: NativeGeocoderReverseResult) =>
  { console.log('The address is ' + result[0].street + ' in ' + result[0].countryCode)

相关内容

  • 没有找到相关文章

最新更新