Hello, Is possible to transfer QList<QGeoCoordinate> to QML (to Map path) without temporary copy conversion to QVariantList?
What is fastest way to convert QList<QGeoCoordinate> to QVariantList? Currently i doing it that way: QVariantList tmp; tmp.reserve(data.size()); for (const QGeoCoordinate& i: data) tmp.push_back(QVariant::fromValue(i)); return tmp;
_______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest