模拟位置,包括 Xcode 4.2 / iOS5 中的移动
我见过 Apple 演示 iOS5 中的新模拟器功能,除了静态位置之外,他们还展示了在模拟器上运行的应用程序上模拟位置移动的能力。我已经使用 GPX 文件成功模拟了单个位置,但我找不到任何模拟运动的方法。
这个功能是在最后一刻被删除的还是我错过了一些明显的东西?
I've seen Apple demoing the new simulator features in iOS5, and apart from static locations, they showed off the ability to simulate location movement on an application running on the Simulator. I have successfully simulated single locations using GPX files, but I can't find any way of simulating movement.
Did this feature get dropped at the last minute or am I missing something obvious?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
type 支持可用于模拟运动的元素。 Xcode 将仅循环遍历点列表。例如,在柏林市中心步行 4 分钟即可:
The
<wpt>
type supports a<time>
element which can be used to simulate movement. Xcode will just go through the list of points in a loop. For example, here's a short 4 minute walk in the center of Berlin:只需添加许多节点作为节点的子节点,如下所示:
但我不知道如何控制速度。
Just add many nodes as child of node like this:
I have no idea how to control the speed though.