【问题标题】:How to get latitude and longitude lines in world wind?如何在世界风中获得经纬线?
【发布时间】:2013-10-12 04:45:19
【问题描述】:

有人可以告诉我如何在WorldWind 的地球上画线。

我想在可见的地球表面上画经纬线?

【问题讨论】:

  • 你会画什么吗?你能做什么?贴一些代码...

标签: latitude-longitude worldwind


【解决方案1】:

您需要添加刻度层:

   try {
       graticuleLayer = (Layer) LatLonGraticuleLayer.class.newInstance();
   } catch (Exception e) {
       System.out.println("Can't get a graticule layer " + e);
   }
   if (graticuleLayer != null) {
       graticuleLayer.setEnabled(true);
   }

【讨论】:

    猜你喜欢
    • 2013-07-26
    • 2020-09-12
    • 1970-01-01
    • 1970-01-01
    • 2019-02-16
    • 1970-01-01
    • 1970-01-01
    • 2012-08-04
    • 2020-08-05
    相关资源
    最近更新 更多