ArcGIS Server开发——控制图层是否可见
当需要控制图层的可见性时,可以使用
IMapDescription mapdescription = webMap.MapDescription;
webMap.ManageLifetime(mapdescription);
ILayerDescriptions layerdec = mapdescription.LayerDescriptions;
for(int i=0;i < mapdescription.LayerDescriptions.Count; i++)
{
ILayerDescription onelayerdesc = layerdec.get_Element(i);
onelayerdesc.Visible = true;
}
http://www.blogjava.net/ezhubin/archive/2007/08/16/137156.html
问题是渲染生成的图片,四周坐标已知,怎么作为一个图像图层layer跟底图layer完美的重合呢
是不是涉及到校准啊?
TOC
>>图层增减VS图层筛选(筛选更难,每筛选一次就要新建一个图层)
SOE图层增减。。数据+样式。。图层layer。。(高德layer)
SOE开发中常用的两个方法:http://zhihu.geoscene.cn/article/1106
SOE如何新建图层。。其实主要是看ArcGIS Engine怎么操作。。SOE就怎么操作