向数据源导入了一张tif影像,生成map
怎么设置LayerSettingImage,实现iDesktop中的显示方式设置,改变颜色
我简单的使用了setColorTable(colors);但是在iDesktop中看,没变化
使用下面代码添加的图层
Map map = new Map(workspace);
DatasetImage layer = (DatasetImage) datasource.getDatasets().get(dataName);
map.getLayers().add(layer, layerSettingImage, true);
map.viewEntire();
workspace.getMaps().add(dataName, map.toXML());
workspace.save();