Windows Phone 7 - 模拟器上的 GeoCoordinate.Speed
测试 GeoCooperative 类 (http://msdn.microsoft.com/en-us/library/system.device.location.geocooperative.aspx?wa=wsignin1.0) 时发现模拟器上的 Lovacation.Speed 属性返回 NaN 值(纬度) ,经度有效)。
还测试 MS 示例 - http://create.msdn.com/en- US/education/catalog/sample/geolocation(也是速度的 NaN 值)。
在模拟器中模拟\测试速度的最佳方法是什么?
When testing GeoCoordinate Class (http://msdn.microsoft.com/en-us/library/system.device.location.geocoordinate.aspx?wa=wsignin1.0) find that Lovacation.Speed property on emulator return NaN value (latitude, longitude works).
Also test MS sample - http://create.msdn.com/en-US/education/catalog/sample/geolocation (also NaN value for speed).
What is the best way to emulate\test speed in emulator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本思想是为 IGeoPositionWatcher 创建一个自己的实现。在 SharpGis 上,您找到一个从起点生成随机数据并根据行驶距离计算速度的系统。
或者,如果您有 GPX 文档,您可以创建一个从 GPX 文件返回数据的实现。
The basis idea is to create an own implementation for IGeoPositionWatcher. On SharpGis you find one which generates random data from a starting point and calculate the speed based on the traveled distance.
Alternatively if you have a GPX document you can create an implentation which returns the data from the GPX file.