QML MapPolygon из модели C++
Я хочу динамически добавлять / удалять / редактировать MapPolygon
в приложении QML Map. У меня есть другие рабочие места с созданными полигонами (экспорт / импорт файлов и т. Д.), Поэтому я думаю, что я должен использовать MapItemView
с C++ модель данных так многоугольников данных.
Я попытался создать свою собственную модель с моими собственными объектами на основе QObject:
Объект:
class MODELSHARED_EXPORT Polygon : public QObject
{
Q_OBJECT
Q_PROPERTY(QList<QGeoCoordinate> coordinates READ coordinates WRITE setCoordinates NOTIFY coordinatesChanged)
public:
explicit Polygon(QObject *parent = nullptr);
QList<QGeoCoordinate> coordinates() const;
void setCoordinates(QList<QGeoCoordinate> coordinates);
signals:
void coordinatesChanged(QList<QGeoCoordinate> coordinates);
public slots:
void addCoordinate(const QGeoCoordinate & coordinate);
private:
QList<QGeoCoordinate> m_coordinates;
};
Модель:
class MODELSHARED_EXPORT PolygonModel : public QAbstractListModel
{
...
QVariant data(const QModelIndex &index, int role) const override
{
if(index.row() >= 0 && index.row() < rowCount()) {
switch (role) {
case CoordinatesRole:
return QVariant::fromValue(m_data.at(index.row())->coordinates());
}
}
return QVariant();
}
public slots:
void addArea()
{
beginInsertRows(QModelIndex(), rowCount(), rowCount());
m_data.append(new Polygon(this));
endInsertRows();
}
void addPolygonCoordinate(const QGeoCoordinate &coordinate, int index)
{
if(index == -1) {
index = rowCount() - 1;
}
m_data.at(index)->addCoordinate(coordinate);
dataChanged(this->index(0), this->index(rowCount() - 1));
qDebug() << "Adding coordinate..." << coordinate;
}
private:
QList<Polygon*> m_data;
};
И QML:
MapItemView {
id: AreaView
delegate: AreaPolygon {
path: coordinates
}
model: cppPolygonModel
}
AreaPolygon.qml
MapPolygon {
id: areaPolygon
border.width: 1
border.color: "red"
color: Qt.rgba(255, 0, 0, 0.1)
}
Но, к сожалению, многоугольники не появились на карте (когда координаты успешно добавляются в свойство объекта QList). Я думаю, что Addidion Object QList не виден из View, и поэтому MapItemView не обновляется.
Есть ли лучший вариант сделать это? Может быть, я должен использовать модель QGeoPolygon
объекты? (Как?)
1 ответ
Вы должны вернуться QVariantList
вместо QList<QGeoCoordinate>
:
if(index.row() >= 0 && index.row() < rowCount()) {
switch (role) {
case CoordinatesRole:
QVariantList coorvariant;
for(const QGeoCoordinate & coord: m_data.at(index.row())->coordinates()){
coorvariant.append(QVariant::fromValue(coord));
}
return coorvariant;
}
}