簡體   English   中英

在 Qt 5 中更新 QT/QML 映射

[英]Recenter QT/QML Map in Qt 5

親愛的程序員你好,

我想要做的是使用以下 QML 重新定位我的地圖。 我確實將坐標作為一對數字,而不是像在地圖視圖示例中那樣作為地址。

ApplicationWindow {
    visible: true
    width: 720
   height: 1280
   title: qsTr("")
    id: root
    Map {
       id: map
       anchors.centerIn: parent;
       anchors.fill: parent
       zoomLevel: 11
       objectName: "mainMap"

      center  {
        id: mapCenter
        latitude : 50.89
        longitude: 11.23
      }
      plugin: Plugin {
          name: "here"
          PluginParameter { name: "here.app_id"; value: "R9qav4Kw6gO5XKSxNiOO" }
          PluginParameter { name: "here.token"; value: "58UCNRCr1dZxhLL2Bmmz3Q" }
          PluginParameter { name: "here.proxy"; value: "system" }
      }
      function setPosition(pos) {
          map.toCoordinate(pos);
           map.update();
      }
}

C++ 方面目前相對簡單。 這是我迄今為止最好的鏡頭,直接更改緯度和經度似乎從未奏效。 在早期版本中有效的是創建一個新對象作為坐標,然后將其提供給地圖。

#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QObject>
#include <QTime>
#include <QBasicTimer>
#include <QDebug>
#include <QEasingCurve>
#include <QGeoCoordinate>
#include <QtPositioning/private/qgeoprojection_p.h>
#include <QGeoServiceProvider>
#include <QDebug>
#include <QNetworkRequest>

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);
    QUrl data("https://lstsim.de/js/dispatch/1.js");
    QNetworkRequest request(data);

    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
    QObject *rootObject = engine.rootObjects().first();
    QObject* mainMapCenter = rootObject->findChild<QObject*>("mainMap");
   if(mainMapCenter != NULL){
       QVariant returnedValue;
       QPoint point(12,12);
       QMetaObject::invokeMethod(mainMapCenter, "setPosition",
       Q_RETURN_ARG(QVariant, returnedValue),
       Q_ARG(QVariant, point));
       qDebug() << "found map";
   }
    return app.exec();
}

就像在早期版本中提到的那樣,這有效:

   function centermyposition(){ //sets my position, but only once (do not update automatically)
      var coord = Qt.createQmlObject('import QtMobility.location 1.1; Coordinate{latitude:' + positionSource.position.coordinate.latitude + ';longitude:' + positionSource.position.coordinate.longitude + ';}', positionSource, "coord");
      map.center = coord;
      myMapRoot.updateViewport()
}

我找到了一個適合我的解決方案:

ApplicationWindow {

 Location {
        id: mapCentre
        coordinate {
            latitude: -27.5
            longitude: 153.1
        }
    }
    Map {
        id: map
        anchors.centerIn: parent;
        anchors.fill: parent
        zoomLevel: 11
        objectName: "mainMap"

        function recenter(lat,lng) {
           mapCentre.coordinate.latitude = lat
           mapCentre.coordinate.longitude = lng
         }
     }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM