使用 Map Kit 如何找到我的位置?
我需要在 Map Kit 中显示我当前的位置,我该怎么做?
self.map.showsUserLocation = TRUE;
没有显示我的位置,而是显示地图上其他位置的点?我需要找到访问应用程序的位置。 请帮助我。 提前致谢
I need to display my current position in Map Kit, how can I do this ?
self.map.showsUserLocation = TRUE;
is not showing my location instead a point somewhere else in the map? I need to find the location from where I am accessing the application.
Please help me in this..
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用位置管理器来获取您当前的位置。然后获取经纬度值并创建注释并显示在地图上。如果使用map.showsUserLocation = TRUE;它将显示您在实际设备中的当前位置。
注意 - 在模拟器地图套件中显示苹果总部位于库比蒂诺某处 - 我不太记得了。
You need to use location manager for getting your current location. And then get the lat long value and create a annonation and display on map. If you use map.showsUserLocation = TRUE; it will show your current location in actual device.
Note - In simulator map kit shows apple's head quarter location somewhere in Cupertino - I don't remember exactly.