文章分类 - GIS
GIS,AE,MO
摘要:C#制作鹰眼全过程(带注释) axMapControl1是主控件,axMapControl2是鹰眼控件 要看清楚事件响应 1.鹰眼地图资源载入 private void axMapControl1_OnMapReplaced(object sender, IMapControlEvents2_OnMapReplacedEvent e) { //当主地图显...
阅读全文
摘要:经常看到有朋友说, MO添加记录咋那么慢呢,其实MO里面有一个参数的设置,能对添加记录的性能有很大的影响。 这个参数就是Recordset对象的AutoFlush属性,先看看MO帮助中的描述把: The property only applies to Recordsets of MapLayers based on shapefiles. Setting AutoFlush to False w...
阅读全文
摘要:ArcGis Server开发Web GIS新手体验 (以下针对于windows操作系统.net开发环境) ArcGIS Server是ESRI公司最新推出的服务器端品,主要可以实现两大功能: 1、强大的Web GIS系统的开发; 2、分布式GIS系统的开发; ArcGIS Server其内核与ArcGIS Desktop和ArcGIS Engi...
阅读全文
摘要:以下是vb.net代码 Public Sub exportJPG(ByVal mapView As IActiveView) Try Dim strFilter As String = "JPEG文件(*.jpeg)|*.jpeg|BMP文件(*.bmp)|*.bmp" Dim pdlg As SaveFileDialog = New Sa...
阅读全文
摘要:基于AE的三维查询源代码 Public Type m_pObjArray iFeature As iFeature iLayerName As StringEnd TypePublic M_pFeatureArray() As m_pObjArrayPrivate Sub ArcSceneControl_OnMouseDown(ByVal Button As Long, ByV...
阅读全文
摘要:ArcGIS Engine没有提供在MapControl中点击查询的命令,只是提供了ReaderControl中的使用的点击查询的命令,下面的代码就是实现点击查询并闪烁的代码。 过程描述 Private Sub MapControl1_OnMouseDown(ByVal button As Long, ByVal shift As Long, ByVal x As Long, ByVal y As...
阅读全文