gpt4 book ai didi

iphone - 如何得到坐标?

转载 作者:行者123 更新时间:2023-11-28 22:51:17 26 4
gpt4 key购买 nike

我正在尝试从 self.mapView.gps.currentPoint 中提取 x 和 y 坐标,我该怎么做?

这是我到目前为止所做的:

NSLog(@"Location1 : %@", self.mapView.gps.currentPoint);

结果:

Location1 : AGSMutablePoint: x = 29841.008687, y = 40101.841687, spatial reference: 
[AGSSpatialReference: wkid = 0, wkt = "PROJCS["SVY21",
GEOGCS[
"SVY21[WGS84]",
DATUM[
"D_WGS_1984",
SPHEROID["WGS_1984",6378137.0,298.257223563]
],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Transverse_Mercator"],
PARAMETER["False_Easting",28001.642],
PARAMETER["False_Northing",38744.572],
PARAMETER["Central_Meridian",103.8333333333333],
PARAMETER["Scale_Factor",1.0],
PARAMETER["Latitude_Of_Origin",1.366666666666667],
UNIT["Meter",1.0]
]"]`

如果我使用 NSLog(@"Location2 : %@", self.mapView.gps.currentPoint.x);它会返回错误访问错误。

最佳答案

您的问题是 NSLog 中的格式字符串

NSLog(@"Location2 : %@", self.mapView.gps.currentPoint.x);

%@ 意味着它需要一个 obj-c 对象。您正在向它传递 CGFloat。您应该将其替换为 %f%g(它们都采用浮点值但输出略有不同)。

NSLog(@"Location2 : %f", self.mapView.gps.currentPoint.x);

关于iphone - 如何得到坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11944870/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com