osgEarth的agglite插件使用例子feature_rasterize.earth

<!--
osgEarth Sample
Demonstrates use of the "agglite" feature rasterization driver.
-->

<map name="Geometry Rasterizer Demo" type="round" version="2">

    <external>
        <lod_blending/>
    </external>

    <image name="world" driver="gdal">
        <url>../data/world.tif</url>
        <cache_policy usage="no_cache"/>
    </image>

    <image name="world_boundaries" driver="agglite" opacity="0.5">

        <!-- Configure the OGR feature driver to read the shapefile. -->
        <features name="world" driver="ogr">
            <url>../data/world.shp</url>
            <build_spatial_index>true</build_spatial_index>
        </features>

        <styles>
            <style type="text/css">
                default {
                    fill:          #ff7700;
                    stroke:           #ffff00;
                    stroke-width:  1px;
                }
            </style>
        </styles>

        <cache_policy usage="no_cache"/>

    </image>

</map>
时间: 2024-08-03 15:07:07

osgEarth的agglite插件使用例子feature_rasterize.earth的相关文章

jquery.dataTables插件使用例子详解

DataTables是一个jQuery的表格插件.这是一个高度灵活的工具,依据的基础逐步增强,这将增加先进的互动控制,支持任何HTML表格 效果图 代码 <!doctype html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>jquery.dataTables插件</title>     <link rel

jQuery验证插件的例子( 表单验证vs2013)

1 插件支持IE8及以上的版本,不再支持IE6.7: 2 使用范围:企业级别的系统开发(用户数目几十到几千人也行),统一安装IE8以上的浏览器即可: 3 如果是企业级宣传网站,则不能使用: html: <script src="js/jquery-1.11.3.js"></script> <script src="js/jquery.validate.js"></script> <!--<script sr

关于各种编程语言调用C星寻路插件的例子

DLL的调用 1.VB Public Declare Function FindPath Lib "zd/LY_Cstar_VB.dll" (ByVal StarX As Integer, ByVal StarY As Integer, ByVal StopX As Integer, ByVal StopY As Integer, ByVal Space As Integer, ByVal MapSRC As String, ByVal ClickXY As Integer, ByVa

sencha touch的开源插件和例子

写了好久的sencha touch,没想到换工作竟然一年多没有搞了.因为项目的缘故收集了好多的组件,由于懒惰,没有整理,现在想想有点后悔了,再加上如果就这样丢弃,感觉有些遗憾,今天整理了一下放在github上了,可以帮助sencha-touch的朋友们提高. TouchTreeGrid and CalendarPicker Sencha Touch Tree Grid, Basic Grid and Accordion Component with Examples Project Addres

stellar插件小例子

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style>body { font-size: 100px; color: white; text-shadow: 0 1px 0 black, 0 0 5px black; text-align: center;

OSGEARTH三维地形开源项目

第一章   OSGEarth介绍 第二章   OSGEarth编译环境配置 OSGEarth的编译环境配置随着版本的不同.运行平台的不同,也有很大的差异.本章主要以Windows XP SP3(x86)为平台,Visual Studio 2010 为编译环境来介绍OSGEarth2.0的变异环境配置. 第一节  OSGEarth V2.0相关资源 OSGEarth的相关资源可以通过其官方网站(http://www.osgearth.org/wiki/Downloads)获取(所有资源文件均在关盘

osgEarth加载谷歌卫星地图的源码案例

一.准备工作 安装水经注万能地图下载器,如果没有安装本软件,可以百度"水经注软件"到官方网站下载. 编译OSG.OSGEarth和第三方插件等,这里有一个已经编译好的vs2010+osgearth,下载地址"http://pan.baidu.com/share/link?shareid=107009& uk=2801833827". 二.下载地图 首先需要把谷歌卫星地图下载下来,这里以"郫县"为例. 启动水经注万能地图下载器,点击&quo

锋利的jQuery--编写jQuery插件(读书笔记五)[完结篇]

1.表单验证插件Validation   2.表单插件Form 3.动态事件绑定插件livequery 可以为后来的元素绑定事件 类似于jQuery中的live()方法 4.jQuery UI   5.jQuery Cookie   6.遮罩层插件:thickbox 7.编写jQuery插件 <1>编写插件的目的:给已经有的一些列方法或函数做一个封装,一遍在其他地方使用,方便后期维护和提高开发效率. <2>三种类型的插件 a:封装对象方法的插件 jQuery.fn.extend()

Framework7 索引列表插件的问题

前言 Framework7 作为移动端的开发框架的优良之处已经无需多言.现在已经有了 React 和 Vue 版本,之前在项目中用过 F7 + vue 的开发方式,无论是效率还是产出都近乎完美.有时间的话可以单独写篇文章详细介绍 Framework7,并与其它框架做对比. 插件的问题 对于 Framework7 插件的开发我就不多言了,官方文档很详细.Framework7 的插件开发确实很简单,但有些需要特殊对待的问题,我想通过索引插件这个例子简单说说我的解决方法. 索引列表在移动端算是比较常见