AGGLite feature-rasterizing image driver
This driver reads vector features and rasterizes them into image tiles. In other words, it "draws" the vectors to a bitmap raster and turns the bitmap into terrain tile image layers.
Configuration
This driver supports the following sub-elements:
<features> Describes the features to render required <style> Defines overall appearance of the vector data optional <class> Defines one or more feature classes for categorization of features optional <geometry_type> optional
Example
See the feature_agglite.earth sample in the repo
<map name="Feature Rasterization Demo" type="geocentric">
<image name="world" driver="gdal">
<url>../data/world.tif</url>
</image>
<image name="world" driver="agglite">
<features name="world" driver="ogr">
<url>../data/world.shp</url>
</features>
<style type="text/css">
world {
fill: #ffff80;
fill-opacity: 0.8;
}
</style>
</image>
</map>
