|
osgEarth 2.1.1
|
Inheritance diagram for osgEarth::ElevationLayerOptions:
Collaboration diagram for osgEarth::ElevationLayerOptions:Public Member Functions | |
| ElevationLayerOptions (const ConfigOptions &options=ConfigOptions()) | |
| ElevationLayerOptions (const std::string &name, const TileSourceOptions &driverOptions) | |
| virtual Config | getConfig () const |
| virtual void | mergeConfig (const Config &conf) |
Private Member Functions | |
| void | fromConfig (const Config &conf) |
| void | setDefaults () |
Initialization and serialization options for an elevation layer.
Definition at line 35 of file ElevationLayer.
| ElevationLayerOptions::ElevationLayerOptions | ( | const ConfigOptions & | options = ConfigOptions() | ) |
Constructs new elevation layer options.
Definition at line 30 of file ElevationLayer.cpp.
: TerrainLayerOptions( options ) { setDefaults(); fromConfig( _conf ); }
Here is the call graph for this function:| ElevationLayerOptions::ElevationLayerOptions | ( | const std::string & | name, |
| const TileSourceOptions & | driverOptions | ||
| ) |
Constructs new elevation layer options, given the underlying driver options.
Definition at line 37 of file ElevationLayer.cpp.
: TerrainLayerOptions( name, driverOptions ) { setDefaults(); fromConfig( _conf ); }
Here is the call graph for this function:| void ElevationLayerOptions::fromConfig | ( | const Config & | conf | ) | [private] |
Reimplemented from osgEarth::TerrainLayerOptions.
Definition at line 59 of file ElevationLayer.cpp.
{
//NOP
}
Here is the caller graph for this function:| Config ElevationLayerOptions::getConfig | ( | ) | const [virtual] |
Reimplemented from osgEarth::TerrainLayerOptions.
Definition at line 51 of file ElevationLayer.cpp.
{
Config conf = TerrainLayerOptions::getConfig();
//NOP
return conf;
}
Here is the caller graph for this function:| void ElevationLayerOptions::mergeConfig | ( | const Config & | conf | ) | [virtual] |
Reimplemented from osgEarth::TerrainLayerOptions.
Definition at line 65 of file ElevationLayer.cpp.
{
TerrainLayerOptions::mergeConfig( conf );
fromConfig( conf );
}
Here is the call graph for this function:| void ElevationLayerOptions::setDefaults | ( | ) | [private] |
Reimplemented from osgEarth::TerrainLayerOptions.
Definition at line 45 of file ElevationLayer.cpp.
{
//NOP
}
Here is the caller graph for this function:
1.7.3