QGeoCircleclass defines a circular geographic area. 更多 …
def
__eq__
(other)
def
__ne__
(other)
def
extendCircle
(coordinate)
def
radius
()
def
setCenter
(center)
def
setRadius
(radius)
def
translate
(degreesLatitude, degreesLongitude)
def
translated
(degreesLatitude, degreesLongitude)
The circle is defined in terms of a
QGeoCoordinatewhich specifies the center of the circle and a qreal which specifies the radius of the circle in meters.The circle is considered invalid if the center coordinate is invalid or if the radius is less than zero.
This class is a
Q_GADGETsince Qt 5.5. It can be directly used from C++ and QML .
QGeoCircle
¶
QGeoCircle(other)
QGeoCircle(center[, radius=-1.0])
QGeoCircle(other)
- param radius
qreal- param other
- param center
Constructs a new, invalid geo circle.
Constructs a new geo circle centered at
center
and with a radius of
radius
meters.
PySide2.QtPositioning.QGeoCircle.
extendCircle
(
coordinate
)
¶
coordinate
–
QGeoCoordinate
Extends the geo circle to also cover the coordinate
coordinate
PySide2.QtPositioning.QGeoCircle.
__ne__
(
other
)
¶
other
–
QGeoCircle
bool
Returns whether this geo circle is not equal to
other
.
PySide2.QtPositioning.QGeoCircle.
__eq__
(
other
)
¶
other
–
QGeoCircle
bool
Returns whether this geo circle is equal to
other
.
PySide2.QtPositioning.QGeoCircle.
radius
(
)
¶
qreal
Returns the radius in meters of this geo circle.
另请参阅
PySide2.QtPositioning.QGeoCircle.
setCenter
(
center
)
¶
center
–
QGeoCoordinate
Sets the center coordinate of this geo circle to
center
.
另请参阅
center()
PySide2.QtPositioning.QGeoCircle.
setRadius
(
radius
)
¶
radius
–
qreal
Sets the radius in meters of this geo circle to
radius
.
另请参阅
PySide2.QtPositioning.QGeoCircle.
translate
(
degreesLatitude
,
degreesLongitude
)
¶
degreesLatitude
–
double
degreesLongitude
–
double
Translates this geo circle by
degreesLatitude
northwards and
degreesLongitude
eastwards.
Negative values of
degreesLatitude
and
degreesLongitude
correspond to southward and westward translation respectively.
PySide2.QtPositioning.QGeoCircle.
translated
(
degreesLatitude
,
degreesLongitude
)
¶
degreesLatitude
–
double
degreesLongitude
–
double
Returns a copy of this geo circle translated by
degreesLatitude
northwards and
degreesLongitude
eastwards.
Negative values of
degreesLatitude
and
degreesLongitude
correspond to southward and westward translation respectively.
另请参阅