xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

資源簡介

2013年4月第二版,比第一版有了很大的改進,自己調試了一遍,感覺代碼的兼容性更好了。 編輯推薦 最新版本的ARCGis 10.0 全面講解了ArcGIS Engine開發的核心技術,如基礎組件對象模型、基于.NET的ArcGIS Engine的開發中的控件、框架控件介紹、控件使用實例等.幫助讀者答疑解惑,將一些開發過程中常見的異常、數據庫連接與釋放、數據加載以及一些經驗技巧做了介紹和匯總解答,以便幫助讀者提高工作效率,找到解決問題的捷徑。 作者簡介 資深技術開發工程師,深入理解了ArcGIS Engine內涵、精髓,在ArcGIS教學、地理信息系統應用開發及培訓上有豐富的經驗,開發了多個地理信息工程應用項目。 目錄 目 錄 第一篇 基礎篇 第1章 開發基礎 2 1.1 組件對象模型 2 1.2 ArcGIS Engine介紹 2 1.2.1 ArcGIS Engine的體系結構 2 1.2.2 ArcGIS Engine的類庫 2 1.2.3 ArcGIS Engine10新特性介紹 4 1.3 .NET平臺概述 4 1.3.1 .NET平臺介紹 4 1.3.2 .NET FrameWork 4.0新特性 5 1.4 基于.NET的ArcGIS Engine的開發 5 1.5 本章小結 9 第2章 ArcGIS Engine中的控件 10 2.1 制圖控件介紹 10 2.1.1 地圖控件 10 2.1.2 頁面布局控件 12 2.2 3D控件介紹 13 2.2.1 場景控件——SceneControl 13 2.2.2 Globe控件 15 2.2.3 SceneControl和GlobeControl的異同 16 2.3 框架控件介紹 19 2.3.1 圖層樹控件——TOCControl 19 2.3.2 工具欄控件——ToolbarControl 20 2.4 控件使用實例 21 2.4.1 GIS系統常用功能集合 21 2.4.2 布局控件與地圖控件關聯 28 2.4.3 布局控件中屬性設置與繪制元素 29 2.5 本章小結 31 第3章 幾何對象和空間坐標系 32 3.1 Geometry對象 32 3.2 Envelope對象 41 3.3 Curve對象 41 3.3.1 Segment對象 42 3.3.2 Path對象 46 3.3.3 Ring對象 46 3.3.4 PolyCurve對象 46 3.4 點對象 47 3.5 線對象 57 3.6 面對象 57 3.7 空間坐標系及變換 58 3.8 本章小結 59 第4章 地圖組成及圖層控制 60 4.1 地圖對象 60 4.1.1 IMap接口 60 4.1.2 IGraphicsContainer接口 62 4.1.3 IActiveView接口 63 4.1.4 IActiveViewEvents接口 64 4.1.5 IMapBookmark接口 64 4.1.6 ITableCollection接口 64 4.2 圖層對象 64 4.2.1 ILayer接口 65 4.2.2 要素圖層 65 4.2.3 CAD文件 68 4.2.4 TIN圖層 69 4.2.5 GraphicsLayer 69 4.3 屏幕顯示對象 69 4.4 頁面布局對象 70 4.5 地圖排版 71 4.5.1 Page對象 71 4.5.2 SnapGrid對象 71 4.5.3 SnapGuides對象 71 4.5.4 RulerSettings對象 72 4.6 Element對象 72 4.6.1 圖形元素 72 4.6.2 框架元素 75 4.7 MapGrid對象模型 75 4.7.1 MapGrid對象 76 4.7.2 MapGridBorder對象 76 4.8 MapSurround對象 77 4.8.1 圖例對象 77 4.8.2 指北針對象 78 4.8.3 比例尺對象 78 4.8.4 比例文本對象 80 4.9 Style對象 80 4.10 添加、刪除圖層數據 81 4.10.1 矢量數據的添加 81 4.10.2 柵格數據的添加 82 4.10.3 刪除圖層數據 82 4.11 圖層控制 82 4.11.1 圖層間關系的調整 83 4.11.2 圖層顯示狀態的控制 83 4.12 本章小結 83 第5章 地圖制圖 84 5.1 地圖標注 84 5.2 符號及符號庫 85 5.2.1 顏色對象 85 5.2.2 Symbol對象 90 5.3 專題圖制作 105 5.3.1 SimpleRenderer專題圖 105 5.3.2 ClassBreakRenderer專題圖 105 5.3.3 UniqueValueRender

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;

namespace?Sample
{
????public?partial?class?Form1?:?Form
????{
????????public?Form1()
????????{
????????????ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);
????????????InitializeComponent();
????????????string?path?=?@“D:\World\“;
????????????string?fileName?=?@“World.mxd“;
????????????//加載圖層文件
????????????axMapControl1.LoadMxFile(path+fileName);
????????????//設置MapControl顯示范圍到數據的全局范圍
????????????axMapControl1.Extent?=?axMapControl1.FullExtent;
????????????

????????}

????????private?void?axToolbarControl1_onmousedown(object?sender?ESRI.ArcGIS.Controls.IToolbarControlEvents_onmousedownEvent?e)
????????{

????????}
????}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件????????860??2012-03-15?02:57??第一章\Sample\Sample.sln

?????文件??????26112??2012-05-31?10:58??第一章\Sample\Sample.suo

?????文件????????919??2012-03-15?07:38??第一章\Sample\Sample\Form1.cs

?????文件???????4166??2012-03-15?04:45??第一章\Sample\Sample\Form1.Designer.cs

?????文件??????10869??2012-03-15?04:45??第一章\Sample\Sample\Form1.resx

?????文件????????487??2012-03-15?02:57??第一章\Sample\Sample\Program.cs

?????文件???????5902??2012-03-15?04:03??第一章\Sample\Sample\Sample.csproj

?????文件??????12800??2012-03-15?05:07??第一章\Sample\Sample\bin\Debug\Sample.exe

?????文件??????24064??2012-03-15?05:07??第一章\Sample\Sample\bin\Debug\Sample.pdb

?????文件??????11600??2012-05-31?09:23??第一章\Sample\Sample\bin\Debug\Sample.vshost.exe

?????文件????????490??2009-08-31?00:40??第一章\Sample\Sample\bin\Debug\Sample.vshost.exe.manifest

?????文件??????67455??2012-05-31?09:23??第一章\Sample\Sample\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

?????文件???????7514??2012-05-31?09:23??第一章\Sample\Sample\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

?????文件????????212??2012-03-15?04:45??第一章\Sample\Sample\obj\x86\Debug\GenerateResource.read.1.tlog

?????文件????????518??2012-03-15?04:45??第一章\Sample\Sample\obj\x86\Debug\GenerateResource.write.1.tlog

?????文件????????826??2012-05-31?09:23??第一章\Sample\Sample\obj\x86\Debug\Sample.csproj.FileListAbsolute.txt

?????文件??????12800??2012-03-15?05:07??第一章\Sample\Sample\obj\x86\Debug\Sample.exe

?????文件???????3572??2012-03-15?04:45??第一章\Sample\Sample\obj\x86\Debug\Sample.Form1.resources

?????文件??????24064??2012-03-15?05:07??第一章\Sample\Sample\obj\x86\Debug\Sample.pdb

?????文件????????180??2012-03-15?04:03??第一章\Sample\Sample\obj\x86\Debug\Sample.Properties.Resources.resources

?????文件???????1344??2012-03-15?02:57??第一章\Sample\Sample\Properties\AssemblyInfo.cs

?????文件???????2862??2012-03-15?02:57??第一章\Sample\Sample\Properties\Resources.Designer.cs

?????文件???????5612??2012-03-15?02:57??第一章\Sample\Sample\Properties\Resources.resx

?????文件???????1091??2012-03-15?02:57??第一章\Sample\Sample\Properties\Settings.Designer.cs

?????文件????????249??2012-03-15?02:57??第一章\Sample\Sample\Properties\Settings.settings

?????文件????????884??2012-03-15?07:39??第二章\ControlSample1\ControlSample1.sln

?????文件??????25600??2012-06-17?15:53??第二章\ControlSample1\ControlSample1.suo

?????文件???????5942??2012-06-02?12:28??第二章\ControlSample1\ControlSample1\ControlSample1.csproj

?????文件??????21139??2012-06-02?06:03??第二章\ControlSample1\ControlSample1\Form1.cs

?????文件??????21793??2012-06-02?06:03??第二章\ControlSample1\ControlSample1\Form1.Designer.cs

............此處省略914個文件信息

評論

共有 條評論