如何在 GeoTools 中添加航点项目

发布于 2024-10-31 07:27:14 字数 86 浏览 3 评论 0原文

在查看 Geotools 的示例时,我找不到有关将航点添加到 GeoTools 地图中的示例。

那么如何将路径点添加到 Geotools 中?

When looking the examples of the Geotools, i cant find the examples about adding waypoint into Map of GeoTools.

So how can i add the waypoint into Geotools ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请恋爱 2024-11-07 07:27:14

根据您的意图,有几种方法可以回答您的问题:

答:GeoTools 只是一个工具包;它不提供用于添加航路点的交互式地图。 gt-graph 模块没有显示如何添加航路点的视觉教程。

答:gt-graph 模块确实展示了如何找到 2 个(或更多)位置之间的最短路径;如果您将这些位置视为您已设置的航路点。

//calculate the paths
for ( Iterator d = destinations.iterator(); d.hasNext(); ) {
  Node destination = (Node) d.next();
  Path path = pf.getPath( destination );

  //do something with the path
}

要在上下文中查看此源代码,文档页面位于:

There are a couple of ways to answer your question depending on what you intended:

A: GeoTools is just a toolkit; it does not provide an interactive map for adding a waypoint. There is no visual tutorial for the gt-graph module showing how to add a waypoint.

A: The gt-graph module does show how to find the shortest path between 2 (or more) locations; if you consider those locations waypoints you are set.

//calculate the paths
for ( Iterator d = destinations.iterator(); d.hasNext(); ) {
  Node destination = (Node) d.next();
  Path path = pf.getPath( destination );

  //do something with the path
}

To see this source code in context the documentation page is here:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文