how to create a QML application to diaplay google map and a navigation window in QML
Please some one suggest the appropriate way to create a QML application to diaplay google map and a navigation window in QML.
I heard WebView is one of the options, when i tried using webview like below, it displays the google home page when url is google.com, but when i give maps.google.com, nothing displays:
import QtQuick 2.0
import QtWebKit 3.0
WebView {
width: 1024
height:960
url: "http://www.google.com"
Component.onCompleted: {
onLoadingChanged.connect(report)
}
function report(loadRequest) {
console.log(loadRequest.errorString)
}
}
Please suggest which is the appropriate way for my requirement.
how to display google map and show direction in QML
Please help me out to display Google Map with directions in QML