pincode 或 zipcode 未从地理编码中获取
Posted
技术标签:
【中文标题】pincode 或 zipcode 未从地理编码中获取【英文标题】:pincode or zipcode not getting from geocode 【发布时间】:2019-05-05 17:19:45 【问题描述】:我正在开发一个颤振应用程序。我想打印地方的 pincode 邮政编码。我正在使用地理编码器库。版本是 geocoder 0.1.1
。我正在尝试显示库页面https://pub.dartlang.org/packages/geocoder#-example-tab- 的示例
问题是没有获取密码或邮政编码。它不来。但是密码显示在地址行中。
try
var geocoding = AppState.of(context).mode;
var longitude = double.parse(_controllerLongitude.text);
var latitude = double.parse(_controllerLatitude.text);
var results = await geocoding.findAddressesFromCoordinates(new Coordinates(latitude, longitude));
this.setState(()
this.results = results;
);
catch(e)
print("Error occured: $e");
finally
this.setState(()
this.isLoading = false;
);
results[0].addressLine
将显示带有密码的地址行。但是results[0].postalCode
显示为空。
如何解决问题?请帮我?我是 Flutter 新手。
Screenshot
【问题讨论】:
【参考方案1】:修改版本后问题解决。我将版本地理编码器更改为 0.1.2。
https://github.com/aloisdeniel/flutter_geocoder/issues/2#issuecomment-444282646
【讨论】:
以上是关于pincode 或 zipcode 未从地理编码中获取的主要内容,如果未能解决你的问题,请参考以下文章