离子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中反向地理编码的对象的主要内容,如果未能解决你的问题,请参考以下文章