Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How to draw routes on the map?

How to draw routes on the map?

Scheduled Pinned Locked Moved Unsolved General and Desktop
1 Posts 1 Posters 677 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L.GogsL Offline
    L.GogsL Offline
    L.Gogs
    wrote on last edited by L.Gogs
    #1

    Hello everyone!!
    I want to display Map and draw lines on it.

    I have qml code but routes aren't displayed.
    Does anybody know how to draw?

    My code:
    ```

    Item
    {
        Map
        {
        id: map
        anchors.fill: parent
        plugin: Plugin{name: "MBTiles"}
        center: QtPositioning.coordinate(42.25277166666667, 42.68047166666667)
        zoomLevel: 30
    
        MapQuickItem
        {
            coordinate: QtPositioning.coordinate(42.25277166666667, 42.68047166666667)
            sourceItem: Image
            {
                id: image
                source: "qrc:/new/m.png"
            }
        }
        MapItemView
        {
            model: routeModel
            delegate: Component
            {
                MapRoute
                {
                    route: route
                    line.color: "blue"
                    line.width: 5
                }
            }
        }
    }
    
    RouteModel
    {
        id: routeModel
        plugin: map.plugin
        query: RouteQuery {id: routeQuery}
        Component.onCompleted:
        {
            routeQuery.addWaypoint(QtPositioning.coordinate(42.25277166666667, 42.70047166666667))
            routeQuery.addWaypoint(QtPositioning.coordinate(42.25277166666667, 42.68047166666667))
            update();
        }
    }
    

    }

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved