IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QGeoPolygon Class

The QGeoPolygon class defines a geographic polygon.

This class was introduced in Qt 5.10.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QGeoPolygon Class

  • Header: QGeoPolygon

  • Since: Qt 5.10

  • qmake: QT += positioning

  • Inherits: QGeoShape

  • Group: QGeoPolygon is part of QtPositioning-positioning

Detailed Description

The polygon is defined by an ordered list of QGeoCoordinates representing its perimeter.

Each two adjacent elements in this list are intended to be connected together by the shortest line segment of constant bearing passing through both elements. This type of connection can cross the date line in the longitudinal direction, but never crosses the poles.

This is relevant for the calculation of the bounding box returned by QGeoShape::boundingGeoRectangle() for this shape, which will have the latitude of the top left corner set to the maximum latitude in the path point set. Similarly, the latitude of the bottom right corner will be the minimum latitude in the path point set.

This class is a Q_GADGET. It can be directly used from C++ and QML.

Member Function Documentation

 

QGeoPolygon::QGeoPolygon()

Constructs a new, empty geo polygon.

QGeoPolygon::QGeoPolygon(const QList<QGeoCoordinate> &path)

Constructs a new geo polygon from a list of coordinates.

QGeoPolygon::QGeoPolygon(const QGeoShape &other)

Constructs a new geo polygon from the contents of other.

QGeoPolygon::QGeoPolygon(const QGeoPolygon &other)

Constructs a new geo polygon from the contents of other.

QGeoPolygon::~QGeoPolygon()

Destroys this polygon.

void QGeoPolygon::addCoordinate(const QGeoCoordinate &coordinate)

Appends coordinate to the polygon.

[since 5.12] void QGeoPolygon::addHole(const QVariant &holePath)

Sets the path for a hole inside the polygon. The hole is a QVariant containing a QList<QGeoCoordinate>.

This function was introduced in Qt 5.12.

[since 5.12] void QGeoPolygon::addHole(const QList<QGeoCoordinate> &holePath)

Overloaded method. Sets the path for a hole inside the polygon. The hole is a QList<QGeoCoordinate>.

This function was introduced in Qt 5.12.

bool QGeoPolygon::containsCoordinate(const QGeoCoordinate &coordinate) const

Returns true if the polygon's perimeter contains coordinate as one of the elements.

QGeoCoordinate QGeoPolygon::coordinateAt(int index) const

Returns the coordinate at index .

[since 5.12] const QVariantList QGeoPolygon::hole(int index) const

Returns a QVariant containing a QVariant containing a QList<QGeoCoordinate> which represents the hole at index.

This function was introduced in Qt 5.12.

[since 5.12] const QList<QGeoCoordinate> QGeoPolygon::holePath(int index) const

Returns a QList<QGeoCoordinate> which represents the hole at index.

This function was introduced in Qt 5.12.

[since 5.12] int QGeoPolygon::holesCount() const

Returns the number of holes.

This function was introduced in Qt 5.12.

void QGeoPolygon::insertCoordinate(int index, const QGeoCoordinate &coordinate)

Inserts coordinate at the specified index.

double QGeoPolygon::length(int indexFrom = 0, int indexTo = -1) const

Returns the length of the polygon's perimeter, in meters, from the element indexFrom to the element indexTo. The length is intended to be the sum of the shortest distances for each pair of adjacent points.

const QList<QGeoCoordinate> &QGeoPolygon::path() const

Returns all the elements of the polygon's boundary.

See Also

See also setPath()

[protected, since QtPositioning 5.12] QVariantList QGeoPolygon::perimeter() const

Returns all the elements of the polygon's perimeter.

This function was introduced in QtPositioning 5.12.

See Also

See also setPerimeter()

void QGeoPolygon::removeCoordinate(const QGeoCoordinate &coordinate)

Removes the last occurrence of coordinate from the polygon.

void QGeoPolygon::removeCoordinate(int index)

Removes element at position index from the polygon.

[since 5.12] void QGeoPolygon::removeHole(int index)

Removes element at position index from the holes QList.

This function was introduced in Qt 5.12.

void QGeoPolygon::replaceCoordinate(int index, const QGeoCoordinate &coordinate)

Replaces the path element at the specified index with coordinate.

void QGeoPolygon::setPath(const QList<QGeoCoordinate> &path)

Sets the polygon's boundary from a list of coordinates.

See Also

See also path()

[protected, since QtPositioning 5.12] void QGeoPolygon::setPerimeter(const QVariantList &path)

Sets all the elements of the polygon's perimeter.

This function was introduced in QtPositioning 5.12.

See Also

See also perimeter()

[since 5.10] int QGeoPolygon::size() const

Returns the number of elements in the polygon.

This function was introduced in Qt 5.10.

QString QGeoPolygon::toString() const

Returns the geo polygon properties as a string.

void QGeoPolygon::translate(double degreesLatitude, double degreesLongitude)

Translates this geo polygon by degreesLatitude northwards and degreesLongitude eastwards.

Negative values of degreesLatitude and degreesLongitude correspond to southward and westward translation respectively.

QGeoPolygon QGeoPolygon::translated(double degreesLatitude, double degreesLongitude) const

Returns a copy of this geo polygon translated by degreesLatitude northwards and degreesLongitude eastwards.

Negative values of degreesLatitude and degreesLongitude correspond to southward and westward translation respectively.

See Also

See also translate()

bool QGeoPolygon::operator!=(const QGeoPolygon &other) const

Returns whether this geo polygon is not equal to other.

QGeoPolygon &QGeoPolygon::operator=(const QGeoPolygon &other)

Assigns other to this geo polygon and returns a reference to this geo polygon.

bool QGeoPolygon::operator==(const QGeoPolygon &other) const

Returns whether this geo polygon is equal to other.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+