25#include <QGeoRectangle>
26#include <QJsonDocument>
30#include <QXmlStreamReader>
32#include "geomaps/Waypoint.h"
33#include "navigation/Leg.h"
98 Q_PROPERTY(QList<QGeoCoordinate>
geoPath READ
geoPath BINDABLE bindableGeoPath)
148 [[nodiscard]] QList<QGeoCoordinate>
geoPath()
const {
return {m_geoPath};}
149 [[nodiscard]] QBindable<QList<QGeoCoordinate>> bindableGeoPath()
const {
return &m_geoPath;}
161 [[nodiscard]] auto
legs() const -> QList<Navigation::
Leg> {
return m_legs; }
167 [[nodiscard]]
auto size() const -> qsizetype {
return m_waypoints.value().size(); }
173 [[nodiscard]]
auto summary() const -> QString;
179 [[nodiscard]] auto
waypoints() const -> QList<GeoMaps::Waypoint> {
return {m_waypoints};}
198 Q_INVOKABLE
void append(
const QGeoCoordinate& position);
264 Q_INVOKABLE QString
load(
const QString& fileName);
313 [[nodiscard]] Q_INVOKABLE QString
save(
const QString& fileName = QString())
const;
343 [[nodiscard]] Q_INVOKABLE QByteArray
toGpx()
const;
359 QList<QGeoCoordinate> computeGeoPath();
362 [[nodiscard]]
auto gpxElements(
const QString& indent,
const QString& tag)
const -> QString;
364 QProperty<QList<QGeoCoordinate>> m_geoPath;
365 QProperty<QVector<GeoMaps::Waypoint>> m_waypoints;
Provides geographic information.
Waypoint, such as an airfield, a navaid station or a reporting point.
Q_INVOKABLE QString load(const QString &fileName)
Loads the route from a GeoJSON or GPX document.
qsizetype size
Number of waypoints in the route.
auto size() const -> qsizetype
Getter function for the property with the same name.
Q_INVOKABLE void insert(const GeoMaps::Waypoint &waypoint)
Inserts a waypoint into the route.
Q_INVOKABLE bool canInsert(const GeoMaps::Waypoint &other) const
Checks if waypoint can reasonably be inserted into this route.
Q_INVOKABLE bool contains(const GeoMaps::Waypoint &waypoint) const
Returns true if waypoint is in this route.
Q_INVOKABLE QByteArray toGeoJSON() const
Exports to route to GeoJSON.
void summaryChanged()
Notification signal for the property with the same name.
Q_INVOKABLE void append(const GeoMaps::Waypoint &waypoint)
Adds a waypoint to the end of the route.
Q_INVOKABLE void moveDown(int idx)
Move waypoint one position down in the list of waypoints.
auto summary() const -> QString
Getter function for the property with the same name.
Q_INVOKABLE void clear()
Deletes all waypoints in the current route.
Q_INVOKABLE bool canAppend(const GeoMaps::Waypoint &other) const
Checks if waypoint can be added as the new end of this route.
Q_INVOKABLE void moveUp(int idx)
Move waypoint one position up in the list of waypoints.
QString summary
Human-readable summary of the flight route.
Q_INVOKABLE QString save(const QString &fileName=QString()) const
Saves flight route to a file.
QList< GeoMaps::Waypoint > waypoints
List of waypoints in the flight route that are not airfields.
auto midFieldWaypoints() const -> QList< GeoMaps::Waypoint >
Getter function for the property with the same name.
Q_INVOKABLE void append(const QGeoCoordinate &position)
Adds a waypoint to the end of the route.
Q_INVOKABLE void removeWaypoint(int idx)
Remove waypoint from the current route.
QList< QGeoCoordinate > geoPath
List of coordinates for the waypoints.
FlightRoute(QObject *parent=nullptr)
Construct a flight route.
QGeoRectangle boundingRectangle
Bounding rectangle.
QList< Navigation::Leg > legs
List of legs.
Q_INVOKABLE qsizetype lastIndexOf(const GeoMaps::Waypoint &waypoint) const
Index for last occurrence of the waypoint in the flight route.
Q_INVOKABLE void replaceWaypoint(int idx, const GeoMaps::Waypoint &newWaypoint)
Replaces a waypoint.
void waypointsChanged()
Notification signal for the property with the same name.
Q_INVOKABLE QByteArray toGpx() const
Exports to route to GPX.
Q_INVOKABLE QString suggestedFilename() const
Suggests a name for saving this route.
QList< GeoMaps::Waypoint > midFieldWaypoints
List of waypoints in the flight route that are not airfields.
Q_INVOKABLE void reverse()
Reverse the route.