如何在GeoTools中添加航点项目

在查看Geotools的示例时,我无法找到有关在GeoTools Map中添加航点的示例。 那么如何将航点添加到Geotools中呢?     
已邀请:
根据您的意图,有几种方法可以回答您的问题: 答: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
}
要在上下文中查看此源代码,文档页面位于: http://docs.geotools.org/latest/userguide/extension/graph/index.html     

要回复问题请先登录注册