GIS的积累
It is never to late to learn

导航

 

2011年6月29日

摘要: 1、AE访问WMS示例代码2、AE访问带参数的WMS示例代码3、AE实现动态发布ImageService 阅读全文
posted @ 2011-06-29 19:19 GIS的学习 阅读(179) 评论(0) 推荐(0) 编辑
 
摘要: IAGSServerConnectionFactory connectionFactory = new AGSServerConnectionFactory(); IPropertySet propertySet = new PropertySet(); IAGSServerConnection connection; propertySet.SetProperty("url", "http://meng/arcgis/services"); connection = connectionFactory.Open(propertySet, 0); // 阅读全文
posted @ 2011-06-29 17:25 GIS的学习 阅读(1027) 评论(0) 推荐(0) 编辑
 
摘要: AoInitialize aoi = new AoInitializeClass(); //也可以设置其他许可类型 esriLicenseProductCode productCode = esriLicenseProductCode.esriLicenseProductCodeEngine; if (aoi.IsProductCodeAvailable(productCode) == esriLicenseStatus.esriLicenseAvailable) { aoi.Initialize(productCode); } ESRI.ArcGIS.esriSystem.IAoInitia 阅读全文
posted @ 2011-06-29 13:18 GIS的学习 阅读(4160) 评论(0) 推荐(0) 编辑
 
摘要: if (this.textBox1.Text == "") { MessageBox.Show("请输入主机名!"); return; } if (this.textBox2.Text == "") { MessageBox.Show("请输入发布服务名称!"); return; } if (this.textBox3.Text == "") { MessageBox.Show("请选择发布MXD文件路径!"); return; } //获取发布的主机名称,服务名称,发布文件 阅读全文
posted @ 2011-06-29 13:07 GIS的学习 阅读(2243) 评论(0) 推荐(0) 编辑