摘要: Globe中的图层类型主要有以下三种:(1)、浮动图层(floating): 通过在要素几何、要素属性或图层级别设置中包含 Z 值,来定义其自身在 3D 空间中的位置。(2)、叠加图层(draped):被放置在某个已知表面图层之上,以从该图层获得其Z值。(3)、高程图层(Elevation):提供要在其上放置其他图层的 3D 表面。1、首先初始化Globe对象2、GetIGlobeDisplayandIGlobeDrawingOrderfrom globe. IGlobeDisplay globeDisplay = globe.GlobeDisplay; IGlobeDrawingOrder 阅读全文
posted @ 2014-04-03 23:10 奔跑的鸡丝 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 原文:Disk caching creates a temporary file or cache for each layer in ArcGlobe, which helps you display and navigate your data efficiently. This topic shows how to set layer cache properties programmatically.译文:磁盘缓存为ArcGlobe里的每一个图层创建一个临时文件或缓存文件,这些缓存将有利于有效的显示和漫游你的数据。这个topic教你如何通过编程来设置图层的缓存属性。原文:Setting 阅读全文
posted @ 2014-04-03 19:43 奔跑的鸡丝 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 首先我们来看ArcGlobe是怎么实现的。通过数据向导,第一步将点要素显示为3D矢量,如图所示:第二步设置图层的可见范围:第三步以设置符号大小:那么要实现这样的效果需要用到哪些接口呢?通过查找帮助文档,主要用到IGlobeLayerProperties这个接口,关于这个接口的说明见上篇博文。该接口主要管理图层的缓存、分辨率、可见范围、3D符号等属性。了解了这些要实现跟ArcGlobe同样的功能就很简单了,在这里我同样也做了一个添加数据向导,如下图所示:代码则很简单://将要素显示为3D矢量;任何距离均显示图层;以现实单位显示符号 IGlob... 阅读全文
posted @ 2014-04-03 15:31 奔跑的鸡丝 阅读(638) 评论(0) 推荐(0) 编辑
摘要: IGlobeLayerProperties 接口Provides access to members that manipulate the globe layer properties.Note:the IGlobeLayerProperties interface has been superseded byIGlobeLayerProperties4. Please consider using the more recent version.(提供对操作GlobeLayer属性成员的访问。)DescriptionUse the IGlobeLayerProperties interfa 阅读全文
posted @ 2014-04-03 10:28 奔跑的鸡丝 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 1、IGlobe:--Globe控件的globe对象2、IGlobeDisplay:Globe控件的显示操作3、IGlobeCamera:IGlobeCamera- 控制查看的视角4、IGlobeViewer:-控制查看的视点5、IGlobeDisplayLayers:提供对控制globe显示图层成员的访问描述:IGlobeDisplayLayers interface provides access tomembers that affect a layers property. IGlobeDisplaylayers interface has thefollowing propertie 阅读全文
posted @ 2014-04-03 10:08 奔跑的鸡丝 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 1、IGlobe:--Globe控件的globe对象2、IGlobeDisplay:Globe控件的显示操作3、IGlobeCamera:IGlobeCamera- 控制查看的视角4、IGlobeViewer:-控制查看的视点5、IGlobeDisplayLayers:提供对控制globe显示图层成员的访问描述:IGlobeDisplayLayers interface provides access tomembers that affect a layers property. IGlobeDisplaylayers interface has thefollowing propertie 阅读全文
posted @ 2014-04-03 10:08 奔跑的鸡丝 阅读(267) 评论(0) 推荐(0) 编辑