QGeoMapCircleObject Class ReferenceThe QGeoMapCircleObject class is a QGeoMapObject used to draw the region within a given distance of a coordinate. More... #include <QGeoMapCircleObject> Inherits QGeoMapObject. Properties
Public Functions
Reimplemented Public Functions
Signals
Additional Inherited Members
Detailed DescriptionThe QGeoMapCircleObject class is a QGeoMapObject used to draw the region within a given distance of a coordinate. The circle is specified by either a valid QGeoBoundingCircle instance or a valid QGeoCoordinate instance and a qreal with value greater than 0.0, which represent the center of the circle and the radius of the circle in metres respectively. The circle may appear as an ellipse on maps which use the Mercator projection. This is done so that the circle accurately covers all points at a distance of the radius or less from the center. Property Documentation
|
QBrush | brush () const |
void | setBrush ( const QBrush & brush ) |
Notifier signal:
void | brushChanged ( const QBrush & brush ) |
This property holds this property holds the coordinate of the center of the circle to be drawn by this circle object.
The default value of this property is an invalid coordinate. While the value of this property is invalid the circle object will not be displayed.
Access functions:
QGeoCoordinate | center () const |
void | setCenter ( const QGeoCoordinate & center ) |
Notifier signal:
void | centerChanged ( const QGeoCoordinate & center ) |
This property holds this property holds the pen that will be used to draw this object.
The pen is used to draw an outline around the circle. The circle is filled using the QGeoMapCircleObject::brush property.
The pen will be treated as a cosmetic pen, which means that the width of the pen will be independent of the zoom level of the map.
Access functions:
QPen | pen () const |
void | setPen ( const QPen & pen ) |
Notifier signal:
void | penChanged ( const QPen & pen ) |
This property holds this property holds the radius in metres of the circle that will be drawn by this circle object.
The default value of this property is -1.0. While the value of this property is not greater than 0 the circle object will not be displayed.
Access functions:
qreal | radius () const |
void | setRadius ( qreal radius ) |
Notifier signal:
void | radiusChanged ( qreal radius ) |
Constructs a new circle object.
Constructs a new circle object based on the circle circle.
Constructs a new circle object with a center at coordinate center and a radius in meters of radius.
Destroys this circle object.
This signal is emitted when the brush used to fill the inside of the circle object has changed.
The new value is brush.
This signal is emitted when the center of the circle object has changed.
The new value is center.
Returns a QGeoBoundingCircle instance which corresponds to the circle that will be drawn by this object.
This is equivalent to
QGeoMapCircleObject *object;
// setup object
QGeoBoundingCircle(object->center(), object->radius());
See also setCircle().
This signal is emitted when the pen used to draw the edge of the circle object has changed.
The new value is pen.
This signal is emitted when the radius of the circle object has changed.
The new value is radius.
Sets the circle that will be drawn by this object to circle.
This is equivalent to
QGeoMapCircleObject *object;
// setup object
object->setCenter(circle.center());
object->setRadius(circle.radius());
See also circle().
Reimplemented from QGeoMapObject::type().