CLLocationCooperative2DMake 行为
好吧,我试图处理一些奇怪的事情,我不知道这是否只是我
在尝试使用,
CLLocationCoordinate2D newCoord = CLLocationCoordinate2DMake(54.607313, -1.292585);
如果我这样写,它工作正常,但如果我尝试使用
CLLocationCoordinate2D newCoord = CLLocationCoordinate2DMake(lat, lng);
(从以前的 vc 传递的 lat 和 lng 值)我会这样做不工作。我可以注销这些数字,它们是相同的。
社会[1703:307] 1.052294 社会[1703:307] 1.052294
我是在做一些愚蠢的事情吗?
ok im trying to deal with something strange and i don't know if its just me
im trying to use
CLLocationCoordinate2D newCoord = CLLocationCoordinate2DMake(54.607313, -1.292585);
if i write it like this it works fine, but if i try to use
CLLocationCoordinate2D newCoord = CLLocationCoordinate2DMake(lat, lng);
(lat and lng values passed from previous vc) i does not work. i can log out the numbers and they are the same.
society[1703:307] 1.052294
society[1703:307] 1.052294
am i doing something silly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,是的,我做了一些愚蠢的事情,只是为了指出这一点,记住在使用坐标时,“-”是一个非常重要的符号
:O
ok , yes i was doing something stupid, and just to point it out remember when working with coords the "-" is a very important symbol
:O