Simple model driver
This driver loads an external OSG model into the scene. That's it.
So far, it doesn't so any transformations of the loaded model, no terrain clamping, nothing. These capabilities will likely be covered by the forthcoming "point model substitution" driver. You can use OSG's .trans/.rot/.scale pseudo-drivers if you want to use this driver to load a model.
Configuration
This driver supports the following sub-elements:
<url> The location of the external model to load required
Example
<map name="Simple model demo">
<image name="world" driver="gdal">
<url>../data/world.tif</url>
</image>
<model name="model" driver="simple">
<url>something.ive</url>
</model>
</map>
