skyline移动端创建一个铲平模型
2019-09-26 本文已影响0人
Darshan
例子演示创建一个铲平3D模型的对象,需要传入一个铲平的要素图层的地理信息对象。
//铲平模型
public static void createTerrainModifier(final IGeometry iGeometry) {
UI.runOnRenderThread(new Runnable() {
@Override
public void run() {
ITerrainModifier modifier = ISGWorld.getInstance().getCreator().CreateTerrainModifier(iGeometry, 0, false, 0, "", "TerrainModifier");
String rootId = ISGWorld.getInstance().getProjectTree().GetNextItem(ISGWorld.getInstance().getProjectTree().getRootID(), 11);
while (!TextUtils.isEmpty(rootId)) {
try {
modifier.setApplyTo(rootId);
} catch (Exception e) {
// Log.e("Tag",e.getMessage());
}
rootId = ISGWorld.getInstance().getProjectTree().GetNextItem(rootId, 13);
}
}
});
}