Titanium - 在用户位置进行注释
我是一名 iPhone 开发者,也是使用 Titanium studio 的初学者。几天前我开始学习 Titanium,并研究了一些使用视图、导航组、图像等的示例。我想更进一步。现在我需要在窗口中打开一个地图视图,并在用户当前位置上注释一个图钉。我现在打开了一个地图视图。我不知道如何获取用户的纬度&经度并在该点进行注释。帮助我进一步处理任何代码或示例。提前致谢。
I am an iPhone developer and a beginner in using Titanium studio. I started to learn Titanium few days back and worked on some samples which uses view, navgroup, images, etc. I'd like to step advance. Now I need to open a mapView in a window and annotate a pin on the user's current location. I have opened a mapView now. I have no idea in getting the user's latitude & longitude and to make annotation at that point. Help me to proceed further with any code or samples. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 Ti.Geolocation.getCurrentPosition() 获取地理位置。对于注释,请尝试这个示例:
希望它有所帮助:)
you may get the geoposition by Ti.Geolocation.getCurrentPosition(). And for annotation try this example:
hope it helps :)