iPhone 上的位置,subThoroughfare 为空

发布于 2024-12-18 04:38:59 字数 782 浏览 1 评论 0原文

我正在开发一个应用程序,可以保存用户当前位置的街道。我已经知道了位置,并且正在使用地理编码器来获取街道和号码:

- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark
{
    // with the placemark you can now retrieve the city name
    [self setCity:placemark.subLocality];
    [self setStreet:placemark.thoroughfare];
    [self setNumber:placemark.subThoroughfare];

}

一切顺利,但我在阿根廷,并且地标的 subthoroughfare 字段始终为空。

我发现了与此相关的内容: https://stackoverflow .com/questions/7335094/mapkit-stopped-sending-subthoroughfare-when-the-colines-dont-correspond-to,但即使在精确的位置(在阿根廷),我也总是得到空值。在android中,我可以毫无问题地获取街道号码。

任何建议将不胜感激

I'm developing an app that saves the street of the user's current location. I already have the location, and I´m using geocoder to get the street and the number:

- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark
{
    // with the placemark you can now retrieve the city name
    [self setCity:placemark.subLocality];
    [self setStreet:placemark.thoroughfare];
    [self setNumber:placemark.subThoroughfare];

}

Everything goes all right, but I`m in Argentina, and the placemark's subthoroughfare field is always null.

I found something related to this: https://stackoverflow.com/questions/7335094/mapkit-stopped-sending-subthoroughfare-when-the-coordinates-dont-correspond-to , but i always get null even in exact positions (in Argentina). In android, i'm able to get streets numbers without any problem.

Any advice will be appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想挽留 2024-12-25 04:38:59

好的,最后我使用 google api 重新获取位置解决了问题。

Ok, finally I solved the issue using the google apis to reatrive the location.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文