如何在GeoTools中添加航点项目

时间:2011-04-11 11:51:37

标签: java map geotools

在查看Geotools的示例时,我无法找到有关在GeoTools Map中添加航点的示例。

那么如何将航点添加到Geotools中呢?

1 个答案:

答案 0 :(得分:2)

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

答: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
}

要在上下文中查看此源代码,请参阅文档页面: