将地图添加到 WPF 应用程序
我有一个 WPF 应用程序,它以图形方式表示城市之间的汽车轨迹。
到目前为止,它只是白色背景上的圆圈和它们之间的线。
有没有一种方法可以添加一些功能,比如谷歌地图,将圆圈链接到物理坐标,而不是沿着道路绘制真实路径?
I have a WPF application that graphically represents a car trajectory between cities.
Till now, it's just circles and line between them on a white background.
Is there a way to add some functionality like Google Maps does, say, link circles to physical coordinates and instead of lines draw real paths following the roads?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然这是可能的,但您必须获得详细的路线信息。
当然,第一个问题是路线是否应该显示为理想(计算)路线或实际完成的路线。
一种可能性是包含一个网络浏览器并使用 Javascript 中的 Google Maps API 或其他很棒的地图 这是一个.NET 地图库。
Of course its possible but you have to get access to detailed route information.
First question of course is if the routes should be displayed as ideal (calculated) routes or as actually completed routes.
One Possibility is to include a webbrowser and use the Google Maps API in Javascript or otherwise great maps which is a .NET map library.
对于问题的渲染部分,您可以使用 Path 类来定义线段/贝塞尔曲线的集合。
For the rendering part of the problem, you can probably use the Path class to define a collection of line segments/bezier curves.