osgEarth 2.1.1
|
Public Member Functions | |
FeatureProfile (const GeoExtent &extent) | |
const GeoExtent & | getExtent () const |
const SpatialReference * | getSRS () const |
bool | getTiled () const |
void | setTiled (bool tiled) |
int | getFirstLevel () const |
void | setFirstLevel (int firstLevel) |
int | getMaxLevel () const |
void | setMaxLevel (int maxLevel) |
const osgEarth::Profile * | getProfile () const |
void | setProfile (const osgEarth::Profile *profile) |
Protected Attributes | |
osg::ref_ptr< const osgEarth::Profile > | _profile |
GeoExtent | _extent |
bool | _tiled |
int | _firstLevel |
int | _maxLevel |
FeatureProfile::FeatureProfile | ( | const GeoExtent & | extent | ) |
Definition at line 31 of file Feature.cpp.
: _extent( extent ), _firstLevel(0), _maxLevel(-1), _tiled(false) { //nop }
const GeoExtent& osgEarth::Features::FeatureProfile::getExtent | ( | ) | const [inline] |
int FeatureProfile::getFirstLevel | ( | ) | const |
Definition at line 53 of file Feature.cpp.
{ return _firstLevel; }
int FeatureProfile::getMaxLevel | ( | ) | const |
Definition at line 65 of file Feature.cpp.
{ return _maxLevel; }
const osgEarth::Profile * FeatureProfile::getProfile | ( | ) | const |
Definition at line 77 of file Feature.cpp.
{ return _profile.get(); }
const SpatialReference* osgEarth::Features::FeatureProfile::getSRS | ( | ) | const [inline] |
bool FeatureProfile::getTiled | ( | ) | const |
Definition at line 41 of file Feature.cpp.
{ return _tiled; }
void FeatureProfile::setFirstLevel | ( | int | firstLevel | ) |
Definition at line 59 of file Feature.cpp.
{ _firstLevel = firstLevel; }
void FeatureProfile::setMaxLevel | ( | int | maxLevel | ) |
Definition at line 71 of file Feature.cpp.
{ _maxLevel = maxLevel; }
void FeatureProfile::setProfile | ( | const osgEarth::Profile * | profile | ) |
Definition at line 83 of file Feature.cpp.
{ _profile = profile; }
void FeatureProfile::setTiled | ( | bool | tiled | ) |
Definition at line 47 of file Feature.cpp.
{ _tiled = true; }
GeoExtent osgEarth::Features::FeatureProfile::_extent [protected] |
int osgEarth::Features::FeatureProfile::_firstLevel [protected] |
int osgEarth::Features::FeatureProfile::_maxLevel [protected] |
osg::ref_ptr< const osgEarth::Profile > osgEarth::Features::FeatureProfile::_profile [protected] |
bool osgEarth::Features::FeatureProfile::_tiled [protected] |