【发布时间】:2013-10-12 04:45:19
【问题描述】:
有人可以告诉我如何在WorldWind 的地球上画线。
我想在可见的地球表面上画经纬线?
【问题讨论】:
-
你会画什么吗?你能做什么?贴一些代码...
标签: latitude-longitude worldwind
有人可以告诉我如何在WorldWind 的地球上画线。
我想在可见的地球表面上画经纬线?
【问题讨论】:
标签: latitude-longitude worldwind
您需要添加刻度层:
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);
}
【讨论】: