Member Function Documentation
QGeoCameraCapabilities::QGeoCameraCapabilities()
Constructs a camera capabilities object.
QGeoCameraCapabilities::QGeoCameraCapabilities(const QGeoCameraCapabilities & other)
Constructs a camera capabilities object from the contents of other.
QGeoCameraCapabilities::~QGeoCameraCapabilities()
Destroys this camera capabilities object.
bool QGeoCameraCapabilities::isValid() const
Returns whether this instance of the class is considered "valid". To be valid, the instance must have had at least one capability set (to either true or false) using a set method, or copied from another instance (such as by the assignment operator).
double QGeoCameraCapabilities::maximumTilt() const
Returns the maximum tilt supported by the associated plugin.
The value is in degrees where 0 is equivalent to 90 degrees between the line of view and earth's surface, that is, looking straight down to earth.
See also setMaximumTilt().
double QGeoCameraCapabilities::maximumZoomLevel() const
Returns the maximum zoom level supported by the associated plugin.
Larger values of the zoom level correspond to more detailed views of the map.
See also setMaximumZoomLevel().
double QGeoCameraCapabilities::minimumTilt() const
Returns the minimum tilt supported by the associated plugin.
The value is in degrees where 0 is equivalent to 90 degrees between the line of view and earth's surface, that is, looking straight down to earth.
See also setMinimumTilt().
double QGeoCameraCapabilities::minimumZoomLevel() const
Returns the minimum zoom level supported by the associated plugin.
Larger values of the zoom level correspond to more detailed views of the map.
See also setMinimumZoomLevel().
void QGeoCameraCapabilities::setMaximumTilt(double maximumTilt)
Sets the maximum tilt supported by the associated plugin to maximumTilt.
The value is in degrees where 0 is equivalent to 90 degrees between the line of view and earth's surface, that is, looking straight down to earth.
See also maximumTilt().
void QGeoCameraCapabilities::setMaximumZoomLevel(double maximumZoomLevel)
Sets the maximum zoom level supported by the associated plugin to maximumZoomLevel.
Larger values of the zoom level correspond to more detailed views of the map.
See also maximumZoomLevel().
void QGeoCameraCapabilities::setMinimumTilt(double minimumTilt)
Sets the minimum tilt supported by the associated plugin to minimumTilt.
The value is in degrees where 0 is equivalent to 90 degrees between the line of view and earth's surface, that is, looking straight down to earth.
See also minimumTilt().
void QGeoCameraCapabilities::setMinimumZoomLevel(double minimumZoomLevel)
Sets the minimum zoom level supported by the associated plugin to maximumZoomLevel.
Larger values of the zoom level correspond to more detailed views of the map.
See also minimumZoomLevel().
void QGeoCameraCapabilities::setSupportsBearing(bool supportsBearing)
Sets whether the associated plugin can render a map when the camera has an aribtrary bearing to supportsBearing.
See also supportsBearing().
void QGeoCameraCapabilities::setSupportsRolling(bool supportsRolling)
Sets whether the associated plugin can render a map when the camera is rolled to supportsRolling.
See also supportsRolling().
void QGeoCameraCapabilities::setSupportsTilting(bool supportsTilting)
Sets whether the associated plugin can render a map when the camera is tilted to supportsTilting.
See also supportsTilting().
bool QGeoCameraCapabilities::supportsBearing() const
Returns whether the associated plugin can render a map when the camera has an aribtrary bearing.
See also setSupportsBearing().
bool QGeoCameraCapabilities::supportsRolling() const
Returns whether the associated plugin can render a map when the camera is rolled.
See also setSupportsRolling().
bool QGeoCameraCapabilities::supportsTilting() const
Returns whether the associated plugin can render a map when the camera is tilted.
See also setSupportsTilting().
QGeoCameraCapabilities & QGeoCameraCapabilities::operator=(const QGeoCameraCapabilities & other)
Assigns the contents of other to this camera capabilities object and returns a reference to this camera capabilities object.