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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了离子2中反向地理编码的对象相关的知识,希望对你有一定的参考价值。

当我使用这个

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更新为result [0] .street它将起作用

这个

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

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

以上是关于离子2中反向地理编码的对象的主要内容,如果未能解决你的问题,请参考以下文章

地理定位离子在浏览器测试中工作但不在android上

对用于反向地理编码位置的 CLGeocoder 类方法感到困惑

从反向地理编码中获取地址

发布 MK 反向地理编码器使我的应用程序崩溃!

Android:反向地理编码不起作用

反向数据编码是啥