iPhone 中使用手机信号塔三角化的纬度和经度?
我知道如何使用 CLLocationManager 类查找纬度和经度,但这需要 GPS 来获取这些值。但是,也有可能无法收到 GPS 信号的情况。
所以,当时我想在iPhone应用程序中使用蜂窝塔三角化方法找到纬度和经度值是可能的。
请任何人指导我如何实现这个...
谢谢大家
I know how to find Latitude and longitude using the CLLocationManager class,but this needs a GPS for getting those values.But,there are also instances where GPS signals may not be recieved.
So,at that time i want to find the latitude and longitude values using cell tower triangularization method in the iPhone application is that possible.
Please anybody guide me how to implement this...
Thank you everyone
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CLLocationManager 将首先使用三角测量,然后尝试获取 GPS 信号。
您无法真正判断坐标是基于三角测量还是基于 GPS,垂直偏移可以为您提供信息。
这就是为什么 CLLocationManager 甚至只能在 iPad Wi-Fi 上工作,它会尝试通过 Wi-Fi 进行三角测量。
CLLocationManager will first use triangulation then will try to get a GPS signal.
You can't really tell whether the coordinates are based on triangulation or GPS, the vertical offset could give you information.
This is why CLLocationManager will even work on the iPad Wi-Fi only, it will try and triangulation via Wi-Fi.