Results 1 to 2 of 2

Thread: how to create a QML application to diaplay google map and a navigation window in QML

  1. #1

    Default 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.

  2. #2

    Default how to display google map and show direction in QML

    Please help me out to display Google Map with directions in QML

Similar Threads

  1. Navigation between 3 (or more) window ?
    By djeff77 in forum Newbie
    Replies: 0
    Last Post: 25th March 2015, 14:56
  2. Qt Window navigation
    By jbarrena in forum Newbie
    Replies: 3
    Last Post: 30th March 2014, 11:56
  3. Replies: 0
    Last Post: 15th October 2013, 09:32
  4. Replies: 1
    Last Post: 21st February 2012, 09:30
  5. Replies: 3
    Last Post: 4th November 2011, 09:38

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.