<options> Element (under <map>)

This section configures how the runtime engine will display map layers.

Sub-elements

<cache> Defines the caching setup for the map. (default: no cache) optional
<profile> Explicitly defines the geospatial "schema" of this map. (default: inferred from map layers) optional
<terrain> Terrain engine configuration options optional
<lighting> Whether to enable or disable OpenGL lighting on the entire Map optional
<overlay_blending> Whether to enable alpha blending on the contents of the overlay planes. Default = true optional

Example

<map>
   <options>
      <cache type="tms">
          <path>c:/osgearth_cache></path>
      </cache>

      <lighting>false</lighting>

      <terrain>
          <compositor>multitexture</compositor>
      </terrain>
      ...
   </options>

   <image ...>
       ...
   </image>
</map>