如何将对象的坐标放入 CLLocation 中? (Objective-C、iPhone)

发布于 2024-08-23 02:36:47 字数 779 浏览 6 评论 0原文

我目前正在使用 http://iphonear.org 移植的 ARKit,循环获取 xml 并绘制屏幕上的坐标。然而,出于某种原因,转换对象值:

for(NSObject *locxml in xmlLocations) {
    tempLocation = [[CLLocation alloc] 
                    initWithLatitude:   (int)[locxml valueForKey:@"lat"]
                    longitude:          (int)[locxml valueForKey:@"long"]];


    tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation];
    tempCoordinate.title = [locxml valueForKey:@"title"];
    [tempLocationArray addObject:tempCoordinate];
    [tempLocation release];
    [locxml release];
}

只是没有显示任何内容,我已经尝试过

[[locxml valueForKey:@"lat"] doubleValue] ,它确实完全在错误的位置显示了坐标(是的,我确信的这个)。

有关如何将对象的坐标放入 CLLocation 的任何帮助吗?

I'm currently using the ARKit ported by the http://iphonear.org guys, looping through a fetched xml and plotting coordinates on the screen. However for some reason casting the object values:

for(NSObject *locxml in xmlLocations) {
    tempLocation = [[CLLocation alloc] 
                    initWithLatitude:   (int)[locxml valueForKey:@"lat"]
                    longitude:          (int)[locxml valueForKey:@"long"]];


    tempCoordinate = [ARGeoCoordinate coordinateWithLocation:tempLocation];
    tempCoordinate.title = [locxml valueForKey:@"title"];
    [tempLocationArray addObject:tempCoordinate];
    [tempLocation release];
    [locxml release];
}

just doesn't show up anything, i have already tried

[[locxml valueForKey:@"lat"] doubleValue] which does indeed shows coordinates just totally in the wrong place (yeah i'm sure of this).

Any help on how to put coordinates from an object into a CLLocation?

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

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

发布评论

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

评论(1

心的位置 2024-08-30 02:36:47

nvm 由于某种原因纬度和经度被交换了>。<我现在觉得自己很蠢。

nvm for some reason the lat and longitude got swapped >.< i feel stupid now.

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