处理地图视图中的错误地址

发布于 2025-01-02 07:40:46 字数 146 浏览 0 评论 0原文

我正在 iPhone 上做一个基于地图的应用程序。我从地址簿中获取我的数据(地址)。当提供正确的地址时,位置将被正确固定。但是,当输入错误的地址(例如 XYZ 而不是正确的城市名称(例如纽约))时,图钉会落到地图的 (0,0) 坐标或加拿大的某个随机位置。我该如何处理这个案子。

I am doing a map based application in iphone. I get my data(address) from the addressbook. The locations are pinned correctly when the right address is provided. But when a wrong address(like XYZ instead of a correct city name like New York) is entered the pins fall to the (0,0) co ordinate of the map or to some random location in Canada. How can I handle this case.

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

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

发布评论

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

评论(1

躲猫猫 2025-01-09 07:40:46

您可以使用 kCLLocationCooperative2DInvalid 常量检查无效坐标,如下所示:

if ((coord.latitude == kCLLocationCoordinate2DInvalid.latitude) || (coord.longitude == kCLLocationCoordinate2DInvalid.longitude))
{
    NSLog(@"Invalid coordinate");
}
else
{
    // Valid coordinate, add it to the map
}

You could check for an invalid coordinate using the kCLLocationCoordinate2DInvalid constant, something like:

if ((coord.latitude == kCLLocationCoordinate2DInvalid.latitude) || (coord.longitude == kCLLocationCoordinate2DInvalid.longitude))
{
    NSLog(@"Invalid coordinate");
}
else
{
    // Valid coordinate, add it to the map
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文